summaryrefslogtreecommitdiff
path: root/lib/Benchmark.t
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2013-06-13 09:00:56 +0100
committerDavid Mitchell <davem@iabyn.com>2013-06-13 09:00:56 +0100
commit5c39bf1981fd94f2f7d0c551c307701ce0faeda6 (patch)
treed7d82ce57353f0a50c6faac3cfc2c6affceca776 /lib/Benchmark.t
parentf12bac9728169abf3576360e2dfa20c3c121d7ca (diff)
downloadperl-5c39bf1981fd94f2f7d0c551c307701ce0faeda6.tar.gz
Benchmark.t: fix skip() call
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 bb25cd85dc..b7d4e7c203 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("INCONSISTENT CLOCK") if $INCONSISTENT_CLOCK;
+ skip(1, "INCONSISTENT CLOCK") if $INCONSISTENT_CLOCK;
ok(cmp_delta($in_onesec_adj, $estimate, $DELTA),
"is $in_onesec_adj within $DELTA of estimate ($estimate)?")