Home | History | Annotate | Download | only in SunSpider

Lines Matching full:tests

56   --runs            Number of times to run tests (default: $testRuns)
57 --tests Only run tests matching provided pattern
62 --ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench
78 'tests=s' => \$testsPattern,
126 my @tests = ();
132 open TESTLIST, "<", "tests/${suite}/LIST" or die "Can't find ./tests/${suite}/LIST";
137 push @tests, $_;
155 $prefix .= "var tests = [ " . join(", ", map { '"' . $_ . '"' } @tests) . " ];\n";
200 print STDERR "Found " . scalar(@tests) . " tests matching '" . $testsPattern . "'\n";
202 print STDERR "Found " . scalar(@tests) . " tests\n";
204 die "No tests to run" unless scalar(@tests);