We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 310cc2d + 5aa8ef6 commit 8da547cCopy full SHA for 8da547c
src/test/checks_run.sh
@@ -118,14 +118,14 @@ if test "$COVERAGE" = "t"; then
118
119
ARGS="$ARGS --enable-code-coverage"
120
CHECKCMDS="\
121
- ENABLE_USER_SITE=1 \
122
- COVERAGE_PROCESS_START=$(pwd)/coverage.rc \
+ export ENABLE_USER_SITE=1 && \
+ export COVERAGE_PROCESS_START=$(pwd)/coverage.rc && \
123
${MAKE} -j $JOBS check-code-coverage && \
124
lcov -l flux*-coverage.info && \
125
coverage combine .coverage* && \
126
- coverage html && coverage xml &&
127
- chmod 444 coverage.xml &&
128
- coverage report"
+ (coverage xml || :) &&
+ (chmod 444 coverage.xml || :) &&
+ (coverage report || :)"
129
130
# Use make install for T_INSTALL:
131
elif test "$TEST_INSTALL" = "t"; then
0 commit comments