summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xshare/spack/qa/run-build-tests6
1 files changed, 5 insertions, 1 deletions
diff --git a/share/spack/qa/run-build-tests b/share/spack/qa/run-build-tests
index 315c0b8e99..5e340d4578 100755
--- a/share/spack/qa/run-build-tests
+++ b/share/spack/qa/run-build-tests
@@ -33,8 +33,12 @@ if [ -z "$SPEC" ]; then
exit 1
fi
+if [ "${SPEC}" = "mpich" ] ; then
+ OPTIONS="-v"
+fi
+
# Print compiler information
spack config get compilers
# Run some build smoke tests, potentially with code coverage
-${coverage_run} bin/spack install ${SPEC}
+${coverage_run} bin/spack install ${OPTIONS} ${SPEC}