Skip to content

Commit 535d2ba

Browse files
committed
Data-Dumper: fix quotekeys.t test count for non-XS testing
This is a follow-up to 5b50ddc, which added 4 tests without adjusting the skip count. Previously, testing without XS available resulted in: t/quotekeys.t ................. Dubious, test returned 255 (wstat 65280, 0xff00) Failed 4/18 subtests (less 5 skipped subtests: 9 okay) ... t/quotekeys.t (Wstat: 65280 (exited 255) Tests: 14 Failed: 0) Non-zero exit status: 255 Parse errors: Bad plan. You planned 18 tests but ran 14.
1 parent 8b57c13 commit 535d2ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dist/Data-Dumper/t/quotekeys.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ my $is_ascii = ord("A") == 65;
2020

2121
run_tests_for_quotekeys();
2222
SKIP: {
23-
skip "XS version was unavailable, so we already ran with pure Perl", 5
23+
skip "XS version was unavailable, so we already ran with pure Perl", 9
2424
if $Data::Dumper::Useperl;
2525
local $Data::Dumper::Useperl = 1;
2626
run_tests_for_quotekeys();

0 commit comments

Comments
 (0)