diff options
author | Jim Meyering <jim@meyering.net> | 2006-02-07 09:18:28 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-02-07 09:18:28 +0000 |
commit | 6b43f36dcb9009e3efd0a227c2513d981e2cfd95 (patch) | |
tree | 343cfa3e6d638842bb346136a19d7fb0ecc3cc71 /tests | |
parent | 6f4ae95f061bca4c8dd29d9a460141b1a0c98154 (diff) | |
download | coreutils-6b43f36dcb9009e3efd0a227c2513d981e2cfd95.tar.xz |
(expected_failure_status_vdir):
Redirect an expected disk-full diagnostic to /dev/null.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/help-version | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/help-version b/tests/help-version index 6314c694d..c96ca7e47 100755 --- a/tests/help-version +++ b/tests/help-version @@ -16,7 +16,8 @@ expected_failure_status_vdir=2 case "$all_programs" in *groups*) - if test -w /dev/full && test -c /dev/full && echo > /dev/full 2>&1; then + if test -w /dev/full && test -c /dev/full \ + && echo > /dev/full 2>/dev/null; then cat 1>&2 <<\EOF ************************************************ WARNING: On this system, the built-in echo function of /bin/sh |