summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2018-09-24 14:55:36 -0700
committerGitHub <noreply@github.com>2018-09-24 14:55:36 -0700
commit5aa05b8ef496e9601e74ba3a43240ae9bb3d14aa (patch)
tree1cb6600a869d783390124c01be38be8d9b6a13f4 /share
parentd2bd5177dae3f187de247b5f5186c20414d1f53e (diff)
downloadspack-5aa05b8ef496e9601e74ba3a43240ae9bb3d14aa.tar.gz
spack-5aa05b8ef496e9601e74ba3a43240ae9bb3d14aa.tar.bz2
spack-5aa05b8ef496e9601e74ba3a43240ae9bb3d14aa.tar.xz
spack-5aa05b8ef496e9601e74ba3a43240ae9bb3d14aa.zip
travis: require sudo in an attempt to avoid build timeouts (#9327)
- Many container builds are timing out frequently during Spack tests in Travis CI. - Travis recommends to try `sudo: required` to see whether this is an infrastructure issue or something else. - added `sudo: required` to all Linux builds. - added --verbose to `spack test` invocation so that we can see more easily what tests it's timing out on. Signed-off-by: Todd Gamblin <tgamblin@llnl.gov>
Diffstat (limited to 'share')
-rwxr-xr-xshare/spack/qa/run-unit-tests6
1 files changed, 5 insertions, 1 deletions
diff --git a/share/spack/qa/run-unit-tests b/share/spack/qa/run-unit-tests
index 68c214ef95..d96144f28a 100755
--- a/share/spack/qa/run-unit-tests
+++ b/share/spack/qa/run-unit-tests
@@ -28,4 +28,8 @@ ${coverage_run} bin/spack help -a
${coverage_run} bin/spack -p --lines 20 spec mpileaks%gcc ^elfutils@0.170
# Run unit tests with code coverage
-${coverage_run} bin/spack test "$@"
+extra_args=""
+if [[ -n "$@" ]]; then
+ extra_args="-k $@"
+fi
+${coverage_run} bin/spack test --verbose "$extra_args"