r25764: Fix total number of tests count to not include skipped tests.
authorJelmer Vernooij <jelmer@samba.org>
Wed, 31 Oct 2007 13:48:48 +0000 (14:48 +0100)
committerStefan Metzmacher <metze@samba.org>
Fri, 21 Dec 2007 04:43:49 +0000 (05:43 +0100)
(This used to be commit d90b058cd48d8b08bb0a0cd6e97ad95062f8259e)

source4/selftest/output/html.pm
source4/selftest/selftest.pl

index 9e83821bc19db1ec6afe777fb6dd12b7a5ccacc2..fc034cc95ff5be796624920bb150e90a5bd80ac0 100644 (file)
@@ -256,7 +256,6 @@ sub summary($)
        my $st = $self->{statistics};
        print INDEX "<tr>\n";
        print INDEX "  <td class=\"testSuiteTotal\">Total</td>\n";
-       print INDEX "  <td></td>\n";
 
        if ($st->{SUITES_FAIL} == 0) {
                print INDEX "  <td class=\"resultOk\">";
@@ -333,9 +332,9 @@ sub summary($)
 
        foreach (@{$summ->{skip_testsuites}}) {
                print SUMMARY "<tr>\n";
-               print SUMMARY "  <td>$$_[1]</td>\n";
-               if (defined($$_[2])) {
-                       print SUMMARY "  <td>$$_[2]</td>\n";
+               print SUMMARY "  <td>$$_[0]</td>\n";
+               if (defined($$_[1])) {
+                       print SUMMARY "  <td>$$_[1]</td>\n";
                } else {
                        print SUMMARY "  <td></td>\n";
                }
index 8928dc080a6617f7dc4feb7dfd832ed26c8ebf7c..ae97d502ee11729260cd1fb382aed3369f6aafd6 100755 (executable)
@@ -203,15 +203,7 @@ sub skip($)
 {
        my ($name) = @_;
 
-       my $reason = find_in_list(\@excludes, $name);
-
-       return $reason if $reason;
-
-       return undef unless ($#includes > -1);
-
-       return "not included" if (not find_in_list(\@includes, $name));
-
-       return undef;
+       return find_in_list(\@excludes, $name);
 }
 
 sub getlog_env($);
@@ -611,8 +603,33 @@ if ($#testlists == -1) {
        die("No testlists specified");
 }
 
-foreach (@testlists) {
-       push(@todo, read_testlist($_));
+my $msg_ops;
+if ($opt_format eq "buildfarm") {
+       require output::buildfarm;
+       $msg_ops = new output::buildfarm($statistics);
+} elsif ($opt_format eq "plain") {
+       require output::plain;
+       $msg_ops = new output::plain("$prefix/summary", $opt_verbose, $opt_immediate, $statistics);
+} elsif ($opt_format eq "html") {
+       require output::html;
+       mkdir("test-results", 0777);
+       $msg_ops = new output::html("test-results", $statistics);
+} else {
+       die("Invalid output format '$opt_format'");
+}
+
+foreach my $fn (@testlists) {
+       foreach (read_testlist($fn)) {
+               my $name = $$_[0];
+               next if (@includes and not find_in_list(\@includes, $name));
+               my $skipreason = skip($name);
+               if ($skipreason) {
+                       $msg_ops->skip_testsuite($name, $skipreason);
+                       $statistics->{SUITES_SKIPPED}++;
+               } else {
+                       push(@todo, $_); 
+               }
+       }
 }
 
 if ($#todo == -1) {
@@ -730,20 +747,6 @@ sub teardown_env($)
        delete $running_envs{$envname};
 }
 
-my $msg_ops;
-if ($opt_format eq "buildfarm") {
-       require output::buildfarm;
-       $msg_ops = new output::buildfarm($statistics);
-} elsif ($opt_format eq "plain") {
-       require output::plain;
-       $msg_ops = new output::plain("$prefix/summary", $opt_verbose, $opt_immediate, $statistics);
-} elsif ($opt_format eq "html") {
-       require output::html;
-       mkdir("test-results", 0777);
-       $msg_ops = new output::html("test-results", $statistics);
-} else {
-       die("Invalid output format '$opt_format'");
-}
 
 if ($opt_no_lazy_setup) {
        setup_env($_) foreach (keys %required_envs);
@@ -781,13 +784,6 @@ $envvarstr
                my $name = $$_[0];
                my $envname = $$_[1];
                
-               my $skipreason = skip($name);
-               if ($skipreason) {
-                       $msg_ops->skip_testsuite($name, $skipreason);
-                       $statistics->{SUITES_SKIPPED}++;
-                       next;
-               }
-
                my $envvars = setup_env($envname);
                if (not defined($envvars)) {
                        $statistics->{SUITES_SKIPPED}++;