* tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
* tests/test-vc-list-files-git.sh: Likewise.
+2008-05-15 Jim Meyering <meyering@redhat.com>
+
+ avoid distracting test output when git or cvs is not fount
+ * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
+ * tests/test-vc-list-files-git.sh: Likewise.
+
2008-05-15 Eric Blake <ebb9@byu.net>
Glibc finally accepted the memmem speedup code, bugzilla #5514.
ok=0
mkdir $tmpdir && cd $tmpdir &&
# without cvs, skip the test
- { cvs -Q -d "$repo" init || exit 77; } &&
+ { ( cvs -Q -d "$repo" init ) > /dev/null 2>&1 || 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 || exit 77; } &&
+ { ( git init -q ) > /dev/null 2>&1 || exit 77; } &&
mkdir d &&
touch d/a b c &&
git add . > /dev/null &&