I noticed two new test failures, both minor. Here are fixes: >From f3569a9b3f18a0f22ce137c90826c0553b6da9ae Mon Sep 17 00:00:00 2001 From: Jim Meyering <[email protected]> Date: Thu, 7 Feb 2013 09:43:41 -0800 Subject: [PATCH] tests: avoid actual/expected mismatch due to changed diagnostic
* tests/cp/fail-perm.sh: Adjust expected diagnostic to match just-changed cp diagnostic. * tests/ln/hard-to-sym.sh: Likewise. --- tests/cp/fail-perm.sh | 2 +- tests/ln/hard-to-sym.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cp/fail-perm.sh b/tests/cp/fail-perm.sh index 29c119b..8665449 100755 --- a/tests/cp/fail-perm.sh +++ b/tests/cp/fail-perm.sh @@ -38,7 +38,7 @@ chmod 0 D ln -s D/D symlink touch F cat > exp <<\EOF -cp: accessing 'symlink': Permission denied +cp: failed to access 'symlink': Permission denied EOF cp F symlink 2> out && fail=1 diff --git a/tests/ln/hard-to-sym.sh b/tests/ln/hard-to-sym.sh index bfe4270..26de099 100755 --- a/tests/ln/hard-to-sym.sh +++ b/tests/ln/hard-to-sym.sh @@ -53,7 +53,7 @@ esac ln -s /no-such-dir || framework_failure_ ln -L no-such-dir hard-to-dangle 2>err && fail=1 case $(cat err) in - *" accessing 'no-such-dir'":*) ;; + *" failed to access 'no-such-dir'":*) ;; *) fail=1 ;; esac ln -P no-such-dir hard-to-dangle || fail=1 -- 1.8.1.1.271.g02f55e6
