Skip to content

Commit

Permalink
[test] t/dynoplibs/debug.t
Browse files Browse the repository at this point in the history
skip debug_break only on windows.
test okay on darwin, cygwin, cygwin64 and linux.
  • Loading branch information
Reini Urban committed Mar 20, 2014
1 parent b00c2d7 commit 536e542
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/dynoplibs/debug.t
@@ -1,5 +1,5 @@
#!perl
# Copyright (C) 2001-2007, Parrot Foundation.
# Copyright (C) 2001-2014, Parrot Foundation.

use strict;
use warnings;
Expand Down Expand Up @@ -96,7 +96,7 @@ CODE
OUTPUT

SKIP: {
skip("This test is failing for no apparent reason on windows", 1);
skip("debug_break fails for no apparent reasons on windows", 1) if $^O eq 'MSWin32';
pir_stdin_output_like( <<'INPUT', <<'CODE', qr/[(]pdb[)] (print I0\n)?1/, "debug_break" );
print I0
quit
Expand Down

0 comments on commit 536e542

Please sign in to comment.