From 68561594ca022703e255b3ef5686f176317e5fd4 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 7 Sep 2008 10:31:27 +0200 Subject: tests: use "Exit $fail", not (exit $fail); exit $fail * tests/test-lib.sh (Exit): New function by Ralf Wildenhues in automake http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=20594c08f63 * tests/**: Convert all uses: This restrictive change converted the vast majority: git grep -l '^(exit \$fail); exit \$fail$' \ | xargs perl -pi -e 's/'^\(exit \$fail\); exit \$fail$/Exit \$fail/' And this did the rest, plus a few undesirable ones, so I manually backed out the changes to ChangeLog-* and build-aux/check.mk: git grep -l -E '\(exit [^)]+\); exit ' \ | xargs perl -pi -e 's/\(exit (.+?)\); exit \1/Exit $1/' --- tests/rm/r-4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/rm/r-4') diff --git a/tests/rm/r-4 b/tests/rm/r-4 index 3d2107914..7cc84b61d 100755 --- a/tests/rm/r-4 +++ b/tests/rm/r-4 @@ -38,4 +38,4 @@ rm -fr d/../ 2>/dev/null && fail=1 test -f d/a || fail=1 -(exit $fail); exit $fail +Exit $fail -- cgit v1.2.3-54-g00ecf