aboutsummaryrefslogtreecommitdiff
path: root/t/t0081-line-buffer.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-07-30 14:21:12 -0700
committerJunio C Hamano <gitster@pobox.com>2014-07-30 14:21:12 -0700
commitc372e7b01b6c6a9902ae5428ee1f9880a5421344 (patch)
treeba3e87fb8dbe8853aa31bb4019431d67912857a9 /t/t0081-line-buffer.sh
parent385e171a5b56dabbe33dbef6f88e8f934a6cacda (diff)
parente8d08871c97cf8e932ded11ef1659d5d14e4b36a (diff)
downloadgit-c372e7b01b6c6a9902ae5428ee1f9880a5421344.tar.gz
git-c372e7b01b6c6a9902ae5428ee1f9880a5421344.tar.xz
Merge branch 'sk/mingw-tests-workaround'
Make tests pass on msysgit by mostly disabling ones that are infeasible on that platform. * sk/mingw-tests-workaround: t800[12]: work around MSys limitation t9902: mingw-specific fix for gitfile link files t4210: skip command-line encoding tests on mingw MinGW: disable legacy encoding tests t0110/MinGW: skip tests that pass arbitrary bytes on the command line MinGW: Skip test redirecting to fd 4
Diffstat (limited to 't/t0081-line-buffer.sh')
-rwxr-xr-xt/t0081-line-buffer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0081-line-buffer.sh b/t/t0081-line-buffer.sh
index bd83ed371..25dba008f 100755
--- a/t/t0081-line-buffer.sh
+++ b/t/t0081-line-buffer.sh
@@ -29,7 +29,7 @@ test_expect_success '0-length read, send along greeting' '
test_cmp expect actual
'
-test_expect_success 'read from file descriptor' '
+test_expect_success NOT_MINGW 'read from file descriptor' '
rm -f input &&
echo hello >expect &&
echo hello >input &&