+2008-06-10 Bruno Haible <bruno@clisp.org>
+
+ * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
+ for $? to work inside the trap command, with various /bin/sh-s.
+ * tests/test-vc-list-files-cvs.sh: Likewise.
+
2008-06-10 Bruno Haible <bruno@clisp.org>
* lib/acl-internal.h: Don't include gettext.h here.
ok=0
mkdir $tmpdir && cd $tmpdir &&
# without cvs, skip the test
- { ( cvs -Q -d "$repo" init ) > /dev/null 2>&1 || exit 77; } &&
+ # The double use of 'exit' is needed for the reference to $? inside the trap.
+ { ( cvs -Q -d "$repo" init ) > /dev/null 2>&1 || { (exit 77); exit 77; }; } &&
mkdir w && cd w &&
mkdir d &&
touch d/a b c &&
fail=1
mkdir $tmpdir && cd $tmpdir &&
# without git, skip the test
- { ( git init -q ) > /dev/null 2>&1 || exit 77; } &&
+ # The double use of 'exit' is needed for the reference to $? inside the trap.
+ { ( git init -q ) > /dev/null 2>&1 || { (exit 77); exit 77; }; } &&
mkdir d &&
touch d/a b c &&
git add . > /dev/null &&