mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-21 07:48:04 +08:00
112efa81f2
`(exit N); exit N'. Otherwise, those many tests could exit with improper exit status when exiting via e.g., a trapped interrupt. Thanks to a report from Bob Proulx.
12 lines
304 B
Plaintext
12 lines
304 B
Plaintext
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); exit 77
|
|
fi
|