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

index a42d1df..591bf8a 100644 (file)
@@ -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");