Removed redundant echo statement in 'make coverage'.

parent 90549d26
...@@ -23,7 +23,6 @@ coverage: ${COVERAGE} build ...@@ -23,7 +23,6 @@ coverage: ${COVERAGE} build
${RM} ${COVERAGE_OUTPUT_DIR}/* ${RM} ${COVERAGE_OUTPUT_DIR}/*
mkdir ${COVERAGE_OUTPUT_DIR} 2>/dev/null || true mkdir ${COVERAGE_OUTPUT_DIR} 2>/dev/null || true
for t in ${TESTS}; do \ for t in ${TESTS}; do \
echo $$t; \
${COVERAGE} -x test.py $$t; \ ${COVERAGE} -x test.py $$t; \
${COVERAGE} combine; \ ${COVERAGE} combine; \
done done
...@@ -33,7 +32,6 @@ coverage: ${COVERAGE} build ...@@ -33,7 +32,6 @@ coverage: ${COVERAGE} build
mkdir ${COVERAGE_OUTPUT_DIR} 2>/dev/null || true mkdir ${COVERAGE_OUTPUT_DIR} 2>/dev/null || true
${COVERAGE} erase ${COVERAGE} erase
for t in ${TESTS}; do \ for t in ${TESTS}; do \
echo $$t; \
${COVERAGE} --omit ${OMIT} -x test.py $$t; \ ${COVERAGE} --omit ${OMIT} -x test.py $$t; \
${COVERAGE} --omit ${OMIT} -c; \ ${COVERAGE} --omit ${OMIT} -c; \
done done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment