X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=t%2Ft3005-ls-files-relative.sh;h=2ec69a8a266fa2438f960ef7d63d6517bbe61b78;hb=22dd22dce050f042b3eec165440966186691db42;hp=583e4676839c5328f67644851749db0278473e88;hpb=2be6ccc01a93a96aa4a462921e15e69ed56b0792;p=thirdparty%2Fgit.git diff --git a/t/t3005-ls-files-relative.sh b/t/t3005-ls-files-relative.sh index 583e467683..2ec69a8a26 100755 --- a/t/t3005-ls-files-relative.sh +++ b/t/t3005-ls-files-relative.sh @@ -7,8 +7,6 @@ This test runs git ls-files with various relative path arguments. . ./test-lib.sh -sq=\' - test_expect_success 'prepare' ' : >never-mind-me && git add never-mind-me && @@ -42,9 +40,9 @@ test_expect_success 'ls-files -c' ' cd top/sub && for f in ../y* do - echo "error: pathspec $sq$f$sq did not match any file(s) known to git" + echo "error: pathspec $SQ$f$SQ did not match any file(s) known to git" done >expect.err && - echo "Did you forget to ${sq}git add${sq}?" >>expect.err && + echo "Did you forget to ${SQ}git add${SQ}?" >>expect.err && ls ../x* >expect.out && test_must_fail git ls-files -c --error-unmatch ../[xy]* >actual.out 2>actual.err && test_cmp expect.out actual.out && @@ -57,9 +55,9 @@ test_expect_success 'ls-files -o' ' cd top/sub && for f in ../x* do - echo "error: pathspec $sq$f$sq did not match any file(s) known to git" + echo "error: pathspec $SQ$f$SQ did not match any file(s) known to git" done >expect.err && - echo "Did you forget to ${sq}git add${sq}?" >>expect.err && + echo "Did you forget to ${SQ}git add${SQ}?" >>expect.err && ls ../y* >expect.out && test_must_fail git ls-files -o --error-unmatch ../[xy]* >actual.out 2>actual.err && test_cmp expect.out actual.out &&