diff options
author | Pádraig Brady <P@draigBrady.com> | 2016-01-18 12:26:15 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2016-01-18 13:07:27 +0000 |
commit | cc05c3c16d9eea8bb3918e6bd9892785291e7526 (patch) | |
tree | 6e7ffe2b15371aeae78dc03f630290b21ef1a6fb | |
parent | 1204da74e3424878f31725b2e4552a1748f82da3 (diff) | |
download | coreutils-cc05c3c16d9eea8bb3918e6bd9892785291e7526.tar.xz |
test: skip test rather than fail with Solaris 10 sed
* tests/rm/r-root.sh: This test was seen to ERROR due to
sed input not having a terminating '\n'. Therefore just skip
with diagnostics upon failure to adjust the error output with sed.
Reported by Assaf Gordon.
-rwxr-xr-x | tests/rm/r-root.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/r-root.sh b/tests/rm/r-root.sh index a236b16bb..b98db141b 100755 --- a/tests/rm/r-root.sh +++ b/tests/rm/r-root.sh @@ -142,7 +142,7 @@ exercise_rm_r_root () ret=$? - clean_rm_err_ < err.t > err || framework_failure_ + clean_rm_err_ < err.t > err || ret=$? return $ret } |