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/misc/wc-files0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/misc/wc-files0') diff --git a/tests/misc/wc-files0 b/tests/misc/wc-files0 index aa2221e86..115012190 100755 --- a/tests/misc/wc-files0 +++ b/tests/misc/wc-files0 @@ -45,4 +45,4 @@ if test "$fail" = ''; then compare out exp || fail=1 fi -(exit $fail); exit $fail +Exit $fail -- cgit v1.2.3-54-g00ecf