On 5/30/06, Ryan Anderson <ryan@xxxxxxxxxxxxxx> wrote:
On Tue, May 30, 2006 at 06:00:20PM +0200, Alex Riesen wrote: > If you actually read the message, you'd probably notice ActiveState Perl. > > I have no idea why have you taken my post as an attempt to insult cygwin; > IF I had that in mind I'd dedicate a whole long post just to that. FWIW, it was probably this: if test "$(uname -o)"= Cygwin; then (I only mention becuase I was about to apply this, then I saw that line, and now I'm confused, is this a fix for ActiveState, or Cygwin?)
Right. My bad. Should be "$(perl -e 'print $^O')" = MSWin32. That ($^O) is actually how it is checked in git-annotate.perl (open_pipe). Christopher, my apologies if that was that. I actually am hostile to Windows and everything around it, and have my reasons for this. Still, it does not justify the way how I did that patch.
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