summaryrefslogtreecommitdiff
path: root/lib/Benchmark.t
diff options
context:
space:
mode:
authorBrian Gottreu <gottreu@gmail.com>2013-06-20 17:28:23 -0700
committerKarl Williamson <public@khwilliamson.com>2013-06-20 20:54:32 -0600
commit4b2a788cef03c6515f65b9f816d0c99f43054b1d (patch)
tree15bd41ff81701a38c5c728cec2533a2e32022fc4 /lib/Benchmark.t
parentd04adc2097f8f151138860a3c5dec966eadc20df (diff)
downloadperl-4b2a788cef03c6515f65b9f816d0c99f43054b1d.tar.gz
Benchmark.t: fix skip() argument order
Diffstat (limited to 'lib/Benchmark.t')
-rw-r--r--lib/Benchmark.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Benchmark.t b/lib/Benchmark.t
index b7d4e7c203..1b8d4b4975 100644
--- a/lib/Benchmark.t
+++ b/lib/Benchmark.t
@@ -155,7 +155,7 @@ $in_onesec_adj *= (1/$cpu1); # adjust because may not have run for exactly 1s
print "# in_onesec_adj=$in_onesec_adj adjusted iterations\n";
SKIP: {
- skip(1, "INCONSISTENT CLOCK") if $INCONSISTENT_CLOCK;
+ skip("INCONSISTENT CLOCK", 1) if $INCONSISTENT_CLOCK;
ok(cmp_delta($in_onesec_adj, $estimate, $DELTA),
"is $in_onesec_adj within $DELTA of estimate ($estimate)?")