diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index a61da1e..7afc358 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -25,6 +25,11 @@ test_expect_success \ git add fake.sendmail GIT_AUTHOR_NAME="A" git commit -a -m "Second."' +if test "$(perl -e 'print $^O')" = MSWin32; then + say "git-send-mail tests disabled on ActiveState Perl + Windows" + # because of windows being such a crap +else + test_expect_success \ 'Extract patches and send' \ 'git format-patch -n HEAD^1 @@ -38,4 +43,6 @@ test_expect_success \ 'Verify commandline' \ 'diff commandline expected' +fi + test_done