diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-08-30 16:01:00 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2016-08-30 16:01:00 -0500 |
commit | f6d07b54f15941ba25ed10ff9465df358a59d625 (patch) | |
tree | f11e15328b742168e31647e090b00d9e5d2898df /share | |
parent | 9b455e925488bd44cfbb591fc55d4dfb01e30e90 (diff) | |
download | spack-f6d07b54f15941ba25ed10ff9465df358a59d625.tar.gz spack-f6d07b54f15941ba25ed10ff9465df358a59d625.tar.bz2 spack-f6d07b54f15941ba25ed10ff9465df358a59d625.tar.xz spack-f6d07b54f15941ba25ed10ff9465df358a59d625.zip |
Always run spack unit tests
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/qa/run-unit-tests | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/share/spack/qa/run-unit-tests b/share/spack/qa/run-unit-tests index 03dfe7cea1..6da919e18d 100755 --- a/share/spack/qa/run-unit-tests +++ b/share/spack/qa/run-unit-tests @@ -35,27 +35,6 @@ export PATH="$SPACK_ROOT/bin:$PATH" # Allows script to be run from anywhere cd "$SPACK_ROOT" -# Array of directories containing core Spack framework -core_dirs=( - bin - etc - # lib, but skip documentation - lib/spack/env - lib/spack/external - lib/spack/llnl - lib/spack/spack - share -) - -# Gather array of changed files -changed=($("$QA_DIR/changed_files" "${core_dirs[@]}")) - -# Exit if no core Spack framework files were modified -if [[ ! "${changed[@]}" ]]; then - echo "No core Spack framework files were modified." - exit 0 -fi - # Run integration tests # TODO: should these be separated into a different test suite? source "$SPACK_ROOT/share/spack/setup-env.sh" |