diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2014-07-17 17:37:00 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-17 13:39:02 -0700 |
commit | a7220fba73737d3ea790ed56e5a777b815687aca (patch) | |
tree | 98a5afb71d885847e33158294fa2790b6b6044d2 /t | |
parent | 398dd4bd039680ba98497fbedffa415a43583c16 (diff) | |
download | git-a7220fba73737d3ea790ed56e5a777b815687aca.tar.gz git-a7220fba73737d3ea790ed56e5a777b815687aca.tar.xz |
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>
Diffstat (limited to 't')
-rwxr-xr-x | t/t0081-line-buffer.sh | 2 |
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 && |