]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
tests: fix incorrect `|| fail` pattern in tests
authorPádraig Brady <P@draigBrady.com>
Sat, 29 Feb 2020 20:48:58 +0000 (20:48 +0000)
committerPádraig Brady <P@draigBrady.com>
Sat, 29 Feb 2020 22:45:00 +0000 (22:45 +0000)
* tests/ls/stat-free-symlinks.sh: s/|| fail/|| fail=1/.
* tests/misc/tee.sh: Likewise.
* tests/touch/relative.sh: Likewise.
* cfg.mk (sc_prohibit_or_fail): A new syntax-check to avoid this.

cfg.mk
tests/ls/stat-free-symlinks.sh
tests/misc/tee.sh
tests/touch/relative.sh

diff --git a/cfg.mk b/cfg.mk
index c9b8c7af576ac87e988a91491a42af3bb90739c9..bb0960a260c00f1946fc0101d3e5172c091d39e7 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -519,6 +519,14 @@ sc_prohibit_and_fail_1:
        in_vc_files='^tests/'                                           \
          $(_sc_search_regexp)
 
+# Ensure that tests don't use `cmd ... || fail` as that's a noop.
+sc_prohibit_or_fail:
+       @prohibit='\|\| fail$$'                                         \
+       exclude=':#'                                                    \
+       halt='|| fail detected. Please use: || fail=1'                  \
+       in_vc_files='^tests/'                                           \
+         $(_sc_search_regexp)
+
 # Ensure that env vars are not passed through returns_ as
 # that was seen to fail on FreeBSD /bin/sh at least
 sc_prohibit_env_returns:
index c538a1c5137762eb214998328e274f3a309ee00b..a786145dbb03b9ac939eeb71478d867281d8aa78 100755 (executable)
@@ -32,7 +32,7 @@ ln -s x link-to-x || framework_failure_
 # symlink and an executable file properly.
 
 LS_COLORS='or=0:mi=0:ex=01;32:ln=01;35' \
-  strace -qe stat ls -F --color=always x link-to-x > out.tmp 2> err || fail
+  strace -qe stat ls -F --color=always x link-to-x > out.tmp 2> err || fail=1
 # Elide info messages strace can send to stdout of the form:
 #   [ Process PID=1234 runs in 32 bit mode. ]
 sed '/Process PID=/d' out.tmp > out
index f8774787a6b2debc823babd06b7f4ecb27f972bc..d5b3e555bd9eefec46e1281bb6a6aa964d1ba694 100755 (executable)
@@ -37,7 +37,7 @@ done
 tee - <sample >out 2>err || fail=1
 compare sample ./- || fail=1
 compare sample out || fail=1
-compare /dev/null err || fail
+compare /dev/null err || fail=1
 
 # Ensure tee exits early if no more writable outputs
 if test -w /dev/full && test -c /dev/full; then
index 215807f0e77abb8ab0af5745d5789dfb03d7381e..74924e2d116afe173aa1d80f609f9cea3cdd97cc 100755 (executable)
@@ -26,7 +26,7 @@ TZ=UTC0 touch --date='2004-01-16 12:00 +0000' f || framework_failure_
 # Set times back by 5 days.
 touch --ref f --date='-5 days' f || fail=1
 
-TZ=UTC0 ls -og --time-style=+%Y-%m-%d f > out.1 || fail
+TZ=UTC0 ls -og --time-style=+%Y-%m-%d f > out.1 || fail=1
 sed 's/ f$//;s/.* //' out.1 > out
 
 cat <<\EOF > exp || framework_failure_