diff options
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/bash/spack-completion.in | 4 | ||||
-rwxr-xr-x | share/spack/spack-completion.bash | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/share/spack/bash/spack-completion.in b/share/spack/bash/spack-completion.in index 8c01232f5e..bd2814806c 100755 --- a/share/spack/bash/spack-completion.in +++ b/share/spack/bash/spack-completion.in @@ -208,10 +208,10 @@ _repos() { SPACK_COMPREPLY="$SPACK_REPOS" } -_tests() { +_unit_tests() { if [[ -z "${SPACK_TESTS:-}" ]] then - SPACK_TESTS="$(spack test -l)" + SPACK_TESTS="$(spack unit-test -l)" fi SPACK_COMPREPLY="$SPACK_TESTS" } diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index e92a525e63..862fa04a06 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -208,10 +208,10 @@ _repos() { SPACK_COMPREPLY="$SPACK_REPOS" } -_tests() { +_unit_tests() { if [[ -z "${SPACK_TESTS:-}" ]] then - SPACK_TESTS="$(spack test -l)" + SPACK_TESTS="$(spack unit-test -l)" fi SPACK_COMPREPLY="$SPACK_TESTS" } @@ -1780,7 +1780,7 @@ _spack_unit_test() { then SPACK_COMPREPLY="-h --help -H --pytest-help -l --list -L --list-long -N --list-names --extension -s -k --showlocals" else - _tests + _unit_tests fi } |