diff options
author | Steffen Mueller <smueller@cpan.org> | 2011-05-20 16:03:07 +0200 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2011-05-20 18:03:35 +0200 |
commit | 49135aa54cde990a648bd4bc0dac37cef0753f11 (patch) | |
tree | 74ce0cce2fc2015258b2c65377715d27223de5bd /dist/Data-Dumper | |
parent | ece9ad29e93f08cdb36e63f99da7ef1f49837e52 (diff) | |
download | perl-49135aa54cde990a648bd4bc0dac37cef0753f11.tar.gz |
Fix skip() usage in tests
It needs to know how many tests to skip. This never failed in
blead since it's perl version dependent.
Diffstat (limited to 'dist/Data-Dumper')
-rw-r--r-- | dist/Data-Dumper/t/bugs.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Data-Dumper/t/bugs.t b/dist/Data-Dumper/t/bugs.t index b7b32fc5c8..73d18c0029 100644 --- a/dist/Data-Dumper/t/bugs.t +++ b/dist/Data-Dumper/t/bugs.t @@ -81,7 +81,7 @@ doh('fixed'); ok(1, "[perl #56766]"); # Still no core dump? We are fine. SKIP: { - skip "perl 5.10.1 crashes and DD cannot help it" if $] < 5.0119999; + skip "perl 5.10.1 crashes and DD cannot help it", 1 if $] < 5.0119999; # [perl #72332] Segfault on empty-string glob Data::Dumper->Dump([*{*STDERR{IO}}]); ok("ok", #ok |