Skip to content

Commit

Permalink
[test] t/dynoplibs/debug.t - Skip debug_break on darwin also. See GH#…
Browse files Browse the repository at this point in the history
…1071
  • Loading branch information
Util committed May 21, 2014
1 parent 6c80b4d commit 382c74d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion t/dynoplibs/debug.t
Expand Up @@ -96,7 +96,8 @@ CODE
OUTPUT

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

0 comments on commit 382c74d

Please sign in to comment.