diff options
author | Jim Meyering <jim@meyering.net> | 2000-10-28 12:53:27 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-10-28 12:53:27 +0000 |
commit | 69254ed7d2a1a5958fcfc261505181be57190a08 (patch) | |
tree | 0e405aac1bfa92672562ca476d0fded6459fced8 /tests/rm | |
parent | 7b866927377facfd89c4da45ba3370429e840159 (diff) | |
download | coreutils-69254ed7d2a1a5958fcfc261505181be57190a08.tar.xz |
Factor out the expensive-test-checking code, ...
Diffstat (limited to 'tests/rm')
-rwxr-xr-x | tests/rm/hash | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/tests/rm/hash b/tests/rm/hash index ba1aa1751..3fc45fe38 100755 --- a/tests/rm/hash +++ b/tests/rm/hash @@ -3,17 +3,7 @@ # Before then, rm would fail occasionally, sometimes via # a failed assertion, others with a seg fault. -if test "$RUN_EXPENSIVE_TESTS" != yes; then - cat <<EOF >&2 -$0: This test is relatively expensive, so it is disabled by default. -To run it anyway, rerun make check with the RUN_EXPENSIVE_TESTS -environment variable set to yes. E.g., - - env RUN_EXPENSIVE_TESTS=yes make check - -EOF - exit 77 -fi +. $srcdir/../expensive if test "$VERBOSE" = yes; then set -x |