diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-05-29 18:06:44 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-05-29 18:06:44 -0700 |
commit | c6c655fdb174b1506fa508b4ac09b1a60bae22cf (patch) | |
tree | 29fda05a887f3e07b3723d93b2ceca9354551f5a | |
parent | 10184b2718db480b4a9bfcb78b6f1c4783dbec85 (diff) | |
parent | e9980419cb925ba158f3015252e0afa2cea5a1b6 (diff) | |
download | git-c6c655fdb174b1506fa508b4ac09b1a60bae22cf.tar.gz |
Merge branch 'ak/t0008-ksh88-workaround'
Test portability workaround.
* ak/t0008-ksh88-workaround:
t0008: 4 tests fail with ksh88
-rwxr-xr-x | t/t0008-ignores.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t0008-ignores.sh b/t/t0008-ignores.sh index 89544dd833..b425f3a0d2 100755 --- a/t/t0008-ignores.sh +++ b/t/t0008-ignores.sh @@ -605,7 +605,7 @@ cat <<-EOF >expected-verbose a/b/.gitignore:8:!on* a/b/one a/b/.gitignore:8:!on* a/b/one one a/b/.gitignore:8:!on* a/b/one two - a/b/.gitignore:8:!on* "a/b/one\"three" + a/b/.gitignore:8:!on* "a/b/one\\"three" a/b/.gitignore:9:!two a/b/two a/.gitignore:1:two* a/b/twooo $global_excludes:2:!globaltwo globaltwo @@ -686,7 +686,7 @@ cat <<-EOF >expected-all a/b/.gitignore:8:!on* b/one a/b/.gitignore:8:!on* b/one one a/b/.gitignore:8:!on* b/one two - a/b/.gitignore:8:!on* "b/one\"three" + a/b/.gitignore:8:!on* "b/one\\"three" a/b/.gitignore:9:!two b/two :: b/not-ignored a/.gitignore:1:two* b/twooo |