summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2014-07-17 17:37:00 +0200
committerJunio C Hamano <gitster@pobox.com>2014-07-17 13:39:02 -0700
commita7220fba73737d3ea790ed56e5a777b815687aca (patch)
tree98a5afb71d885847e33158294fa2790b6b6044d2
parent398dd4bd039680ba98497fbedffa415a43583c16 (diff)
downloadgit-a7220fba73737d3ea790ed56e5a777b815687aca.tar.gz
MinGW: Skip test redirecting to fd 4
... because that does not work in MinGW. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Stepan Kasal <kasal@ucw.cz> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-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 bd83ed371a..25dba008f3 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 &&