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

abecsi at webkit.org abecsi at webkit.org
Wed Dec 22 15:37:20 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 10d5139256956aaa24e3327fb1ff87a1f9fc5813
Author: abecsi at webkit.org <abecsi at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 9 15:28:04 2010 +0000

    2010-11-09  Andras Becsi  <abecsi at webkit.org>
    
            Reviewed by Csaba Osztrogonác.
    
            Improve old-run-webkit-tests --verbose to show DumpTool opening/closing
            https://bugs.webkit.org/show_bug.cgi?id=49252
    
            * Scripts/old-run-webkit-tests:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71629 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 82eb185..252834f 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2010-11-09  Andras Becsi  <abecsi at webkit.org>
+
+        Reviewed by Csaba Osztrogonác.
+
+        Improve old-run-webkit-tests --verbose to show DumpTool opening/closing
+        https://bugs.webkit.org/show_bug.cgi?id=49252
+
+        * Scripts/old-run-webkit-tests:
+
 2010-11-09  Csaba Osztrogonác  <ossy at webkit.org>
 
         Reviewed by Tor Arne Vestbø.
diff --git a/WebKitTools/Scripts/old-run-webkit-tests b/WebKitTools/Scripts/old-run-webkit-tests
index e6b50b1..eeaaab3 100755
--- a/WebKitTools/Scripts/old-run-webkit-tests
+++ b/WebKitTools/Scripts/old-run-webkit-tests
@@ -1421,6 +1421,10 @@ sub openDumpTool()
 {
     return if $isDumpToolOpen;
 
+    if ($verbose && $testsPerDumpTool != 1) {
+        print "| Opening DumpTool |\n";
+    }
+
     my %CLEAN_ENV;
 
     # Generic environment variables
@@ -1503,6 +1507,10 @@ sub closeDumpTool()
 {
     return if !$isDumpToolOpen;
 
+    if ($verbose && $testsPerDumpTool != 1) {
+        print "| Closing DumpTool |\n";
+    }
+
     close IN;
     close OUT;
     waitpid $dumpToolPID, 0;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list