[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Wed Apr 7 23:17:58 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 105639a86e47a468ff0f5a4ce338e2315c4065ee
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Nov 2 03:30:54 2009 +0000

    2009-11-01  Eric Seidel  <eric at webkit.org>
    
            Reviewed by David Levin.
    
            buildbots should use --exit-after-N-failures
            https://bugs.webkit.org/show_bug.cgi?id=30809
    
            Make the bots exit after 20 failures to prevent never-ending
            test runs where every test spends a minute crashing.
    
            * BuildSlaveSupport/build.webkit.org-config/master.cfg:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50401 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/BuildSlaveSupport/build.webkit.org-config/master.cfg b/WebKitTools/BuildSlaveSupport/build.webkit.org-config/master.cfg
index 6219b0d..d2da192 100644
--- a/WebKitTools/BuildSlaveSupport/build.webkit.org-config/master.cfg
+++ b/WebKitTools/BuildSlaveSupport/build.webkit.org-config/master.cfg
@@ -215,7 +215,7 @@ class RunWebKitTests(shell.Test):
     descriptionDone = ["layout-tests"]
     command = ["perl", "./WebKitTools/Scripts/run-webkit-tests", "--no-launch-safari", "--no-new-test-results",
                "--no-sample-on-timeout", "--results-directory", "layout-test-results", "--use-remote-links-to-tests",
-               WithProperties("--%(configuration)s")]
+               WithProperties("--%(configuration)s"), "--exit-after-n-failures", "20"]
 
     def __init__(self, skipBuild=False, *args, **kwargs):
         self.skipBuild = skipBuild
@@ -240,6 +240,8 @@ class RunWebKitTests(shell.Test):
                 incorrectLayoutLines.append(line)
             elif line.startswith("WARNING:") and line.find(' leak') >= 0:
                 incorrectLayoutLines.append(line.replace('WARNING: ', ''))
+            elif line.find('Exiting early') >= 0:
+                incorrectLayoutLines.append(line)
 
             # FIXME: Detect and summarize leaks of RefCounted objects
 
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 3b41c1c..665ca49 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,15 @@
+2009-11-01  Eric Seidel  <eric at webkit.org>
+
+        Reviewed by David Levin.
+
+        buildbots should use --exit-after-N-failures
+        https://bugs.webkit.org/show_bug.cgi?id=30809
+
+        Make the bots exit after 20 failures to prevent never-ending
+        test runs where every test spends a minute crashing.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+
 2009-11-01  Laszlo Gombos  <laszlo.1.gombos at nokia.com>
 
         Reviewed by Eric Seidel.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list