[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

ossy at webkit.org ossy at webkit.org
Wed Dec 22 15:37:14 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 0c3381e393f307154c45914e89a035553b7158ea
Author: ossy at webkit.org <ossy at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 9 15:16:59 2010 +0000

    2010-11-09  Csaba Osztrogonác  <ossy at webkit.org>
    
            Reviewed by Tor Arne Vestbø.
    
            Output of old-run-webkit-tests is buggy in verbose mode
            https://bugs.webkit.org/show_bug.cgi?id=49249
    
            * Scripts/old-run-webkit-tests: Redundant outputs removed.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71627 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index c88ce3e..82eb185 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2010-11-09  Csaba Osztrogonác  <ossy at webkit.org>
+
+        Reviewed by Tor Arne Vestbø.
+
+        Output of old-run-webkit-tests is buggy in verbose mode
+        https://bugs.webkit.org/show_bug.cgi?id=49249
+
+        * Scripts/old-run-webkit-tests: Redundant outputs removed.
+
 2010-11-08  Nicolas Dufresne  <nicolas.dufresne at collabora.co.uk>
 
         Reviewed by Martin Robinson.
diff --git a/WebKitTools/Scripts/old-run-webkit-tests b/WebKitTools/Scripts/old-run-webkit-tests
index 2cef18b..e6b50b1 100755
--- a/WebKitTools/Scripts/old-run-webkit-tests
+++ b/WebKitTools/Scripts/old-run-webkit-tests
@@ -917,8 +917,7 @@ for my $test (@tests) {
         testCrashedOrTimedOut($test, $base, 1, $actual, $error);
     } elsif (!defined $expected) {
         if ($verbose) {
-            print "new " . ($resetResults ? "result" : "test") ."\n";
-            $atLineStart = 1;
+            print "new " . ($resetResults ? "result" : "test");
         }
         $result = "new";
 
@@ -936,11 +935,13 @@ for my $test (@tests) {
                 print "$test -> ";
             }
             my $resultsDir = catdir($expectedDir, dirname($base));
+            if (!$verbose) {
+                print "new";
+            }
             if ($generateNewResults) {
-                print "new (results generated in $resultsDir)\n";
-            } else {
-                print "new\n";
+                print " (results generated in $resultsDir)";
             }
+            print "\n" unless $atLineStart;
             $atLineStart = 1;
         }
     } elsif ($actual eq $expected && $diffResult eq "passed") {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list