Lines Matching refs:suites
3 # run-test-suites.pl
22 Execute all the test suites and print a summary of the results.
24 run-test-suites.pl [[-v|--verbose] [VERBOSITY]] [--skip=SUITE[...]]
53 # All test suites = executable files with a .datax file.
54 my @suites = ();
57 push @suites, $base if -x $base;
58 push @suites, "$base.exe" if -e "$base.exe";
60 die "$0: no test suite found\n" unless @suites;
73 # in case test suites are linked dynamically
90 for my $suite (@suites)
145 printf( " (%d suites, %d tests run%s)\n",
146 scalar(@suites) - $suites_skipped,
148 $suites_skipped ? ", $suites_skipped suites skipped" : "" );
151 # the output can be very long, so provide a summary of which suites failed
152 print " failed suites : @failed_suites\n";
165 print "Note: $suites_skipped suites were skipped.\n";