diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-07-02 13:55:52 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-07-02 19:15:08 +0100 |
commit | 970b89170206779e028fce6a28f0924c7e47bfd1 (patch) | |
tree | afe7f895a35fafb83a96681d675e2ca000d7298c /tests/mv | |
parent | a645ce6c04719ad616ecd3bd7a16cd14772d6a74 (diff) | |
download | coreutils-970b89170206779e028fce6a28f0924c7e47bfd1.tar.xz |
tests: avoid false failures on OpenBSD 5.7
* tests/du/threshold.sh: Homogenize getopt error messages.
* tests/misc/numfmt.pl: Likewise.
* tests/mv/i-3.sh: Skip on *BSD not just FreeBSD.
Diffstat (limited to 'tests/mv')
-rwxr-xr-x | tests/mv/i-3.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mv/i-3.sh b/tests/mv/i-3.sh index 77d4a44f9..5dba1fe4c 100755 --- a/tests/mv/i-3.sh +++ b/tests/mv/i-3.sh @@ -23,7 +23,7 @@ require_controlling_input_terminal_ skip_if_root_ trap '' TTIN # Ignore SIGTTIN -test "$(uname -s)" = FreeBSD && skip_ "known spurious failure on FreeBSD" +uname -s | grep 'BSD$' && skip_ 'known spurious failure on *BSD' touch f g h i || framework_failure_ chmod 0 g i || framework_failure_ |