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/stty-row-col | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/misc/stty-row-col') diff --git a/tests/misc/stty-row-col b/tests/misc/stty-row-col index 8ac114336..987e0d597 100755 --- a/tests/misc/stty-row-col +++ b/tests/misc/stty-row-col @@ -81,4 +81,4 @@ done set x $saved_size stty rows $2 columns $3 || exit 1 -(exit $fail); exit $fail +Exit $fail -- cgit v1.2.3-54-g00ecf