projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
0bcc34c
)
Correct the version-dependant expression for the number of tests, as it
Nicholas Clark [Fri, 11 Nov 2005 14:16:30 +0000 (14:16 +0000)]
is now giving the wrong number for 5.8.x
p4raw-id: //depot/perl@26085
ext/B/t/concise-xs.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/B/t/concise-xs.t
b/ext/B/t/concise-xs.t
index
a42d1df
..
591bf8a
100644
(file)
--- a/
ext/B/t/concise-xs.t
+++ b/
ext/B/t/concise-xs.t
@@
-89,8
+89,8
@@
BEGIN {
use Getopt::Std;
use Carp;
use Test::More tests => ( 1 * !!$Config::Config{useithreads}
- + 3 * ($] > 5.009)
- + 777 );
+ + 1 * ($] > 5.009)
+ + 779 );
require_ok("B::Concise");