+2008-09-26 Bruno Haible <bruno@clisp.org>
+
+ * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
+ * tests/test-vc-list-files-cvs.sh: Likewise.
+
2008-09-26 Bruno Haible <bruno@clisp.org>
* doc/posix-headers/sys_resource.texi: Reorder items.
mkdir $tmpdir && cd $tmpdir &&
# without cvs, skip the test
# 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; }; } &&
+ { ( cvs -Q -d "$repo" init ) > /dev/null 2>&1 \
+ || { echo "Skipping test: cvs not found in PATH"; (exit 77); exit 77; }; } &&
mkdir w && cd w &&
mkdir d &&
touch d/a b c &&
mkdir $tmpdir && cd $tmpdir &&
# without git, skip the test
# 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; }; } &&
+ { ( git init -q ) > /dev/null 2>&1 \
+ || { echo "Skipping test: git not found in PATH"; (exit 77); exit 77; }; } &&
mkdir d &&
touch d/a b c &&
git add . > /dev/null &&