diff options
author | David Mitchell <davem@iabyn.com> | 2013-06-13 09:00:56 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2013-06-13 09:00:56 +0100 |
commit | 5c39bf1981fd94f2f7d0c551c307701ce0faeda6 (patch) | |
tree | d7d82ce57353f0a50c6faac3cfc2c6affceca776 /lib/Benchmark.t | |
parent | f12bac9728169abf3576360e2dfa20c3c121d7ca (diff) | |
download | perl-5c39bf1981fd94f2f7d0c551c307701ce0faeda6.tar.gz |
Benchmark.t: fix skip() call
Diffstat (limited to 'lib/Benchmark.t')
-rw-r--r-- | lib/Benchmark.t | 2 |
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)?") |