Title: [89054] trunk/Tools
Revision
89054
Author
[email protected]
Date
2011-06-16 11:46:44 -0700 (Thu, 16 Jun 2011)

Log Message

2011-06-16  Dmitry Lomov  <[email protected]>

        Reviewed by David Levin.

        https://bugs.webkit.org/show_bug.cgi?id=62603
        Run run-api-tests on bots in debug mode.
        Release mode is disabled due to https://bugs.webkit.org/show_bug.cgi?id=61812.

        * BuildSlaveSupport/build.webkit.org-config/master.cfg:

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (89053 => 89054)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2011-06-16 18:41:09 UTC (rev 89053)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2011-06-16 18:46:44 UTC (rev 89054)
@@ -309,6 +309,12 @@
 
         return result
 
+class RunUnitTests(shell.Test):
+    name = "run-api-tests"
+    description = ["unit tests running"]
+    descriptionDone = ["unit-tests"]
+    command = ["perl", "./Tools/Scripts/run-api-tests"]
+
 class RunPythonTests(shell.Test):
     name = "webkitpy-test"
     description = ["python-tests running"]
@@ -521,6 +527,10 @@
         self.addStep(ExtractBuiltProduct)
         self.addStep(RunJavaScriptCoreTests, skipBuild=True)
         self.addStep(self.TestClass, skipBuild=(platform == 'win'))
+
+        # FIXME: Only running in debug mode due to https://bugs.webkit.org/show_bug.cgi?id=61812
+        if configuration == "debug":
+            self.addStep(RunUnitTests)
         # Tiger's Python 2.3 is too old.  WebKit Python requires 2.5+.
         # Sadly we have no way to detect the version on the slave from here.
         if platform != "mac-tiger":
@@ -543,6 +553,9 @@
         if platform.startswith("chromium"):
             self.addStep(RunChromiumWebKitUnitTests)
         self.addStep(self.TestClass)
+        # FIXME: Only running in debug mode due to https://bugs.webkit.org/show_bug.cgi?id=61812
+        if configuration == "debug":
+            self.addStep(RunUnitTests)
         # Tiger's Python 2.3 is too old.  WebKit Python requires 2.5+.
         # Sadly we have no way to detect the version on the slave from here.
         # Chromium Win runs in non-Cygwin environment, which is not yet fit

Modified: trunk/Tools/ChangeLog (89053 => 89054)


--- trunk/Tools/ChangeLog	2011-06-16 18:41:09 UTC (rev 89053)
+++ trunk/Tools/ChangeLog	2011-06-16 18:46:44 UTC (rev 89054)
@@ -1,3 +1,13 @@
+2011-06-16  Dmitry Lomov  <[email protected]>
+
+        Reviewed by David Levin.
+
+        https://bugs.webkit.org/show_bug.cgi?id=62603
+        Run run-api-tests on bots in debug mode.
+        Release mode is disabled due to https://bugs.webkit.org/show_bug.cgi?id=61812.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+
 2011-06-16  Leandro Pereira  <[email protected]>
 
         Reviewed by Eric Seidel.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to