From: Jim Meyering Date: Fri, 30 Oct 2009 09:49:22 +0000 (+0100) Subject: tests: remove the less-regular fail=0 assignments manually X-Git-Tag: v8.1~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12a0a583f6fe3303bd9dfb30de4a5fe46e8e486f;p=platform%2Fupstream%2Fcoreutils.git tests: remove the less-regular fail=0 assignments manually * tests/tail-2/assert-2: * tests/tail-2/assert: * tests/cp/file-perm-race: * tests/misc/df: * tests/misc/truncate-dir-fail: --- diff --git a/tests/cp/file-perm-race b/tests/cp/file-perm-race index 8ae7cb0..3b71a7c 100755 --- a/tests/cp/file-perm-race +++ b/tests/cp/file-perm-race @@ -23,7 +23,6 @@ fi . $srcdir/test-lib.sh -fail=0 umask 022 mkfifo fifo || skip_test_ "fifos not supported" @@ -50,10 +49,8 @@ cp_pid=$! ) >fifo case `cat ls.out` in --???------*) - fail=0;; -*) - fail=1;; +-???------*) ;; +*) fail=1;; esac wait $cp_pid || fail=1 diff --git a/tests/misc/df b/tests/misc/df index 790309c..4ebd29b 100755 --- a/tests/misc/df +++ b/tests/misc/df @@ -25,10 +25,8 @@ fi case `df .` in *' -'*) - fail=0;; -*) - fail=1;; +'*) ;; +*) fail=1;; esac Exit $fail diff --git a/tests/misc/truncate-dir-fail b/tests/misc/truncate-dir-fail index 942c6b4..d1a67e4 100755 --- a/tests/misc/truncate-dir-fail +++ b/tests/misc/truncate-dir-fail @@ -9,6 +9,6 @@ fi . $srcdir/test-lib.sh # truncate on dir not allowed -truncate -s+0 . && fail=1 || fail=0 +truncate -s+0 . && fail=1 Exit $fail diff --git a/tests/tail-2/assert b/tests/tail-2/assert index 416f206..65e4ab3 100755 --- a/tests/tail-2/assert +++ b/tests/tail-2/assert @@ -55,7 +55,7 @@ mv f foo wait case "`cat err`" in - *$ok) fail=0;; + *$ok) ;; *) fail=1;; esac diff --git a/tests/tail-2/assert-2 b/tests/tail-2/assert-2 index f3ef89d..17b0d55 100755 --- a/tests/tail-2/assert-2 +++ b/tests/tail-2/assert-2 @@ -43,7 +43,7 @@ mv f foo wait case "`cat err`" in - *$ok) fail=0;; + *$ok) ;; *) fail=1;; esac