Title: [112734] trunk/Tools
Revision
112734
Author
[email protected]
Date
2012-03-30 15:27:03 -0700 (Fri, 30 Mar 2012)

Log Message

Disable run-api-tests on release mac builds
https://bugs.webkit.org/show_bug.cgi?id=82788

Reviewed by Ryosuke Niwa.

TestWebKitAPI crashes every time in release builds currently
(https://bugs.webkit.org/show_bug.cgi?id=82652) so disable
run-api-tests on mac release builders.

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

Modified Paths

Diff

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


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2012-03-30 22:26:44 UTC (rev 112733)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2012-03-30 22:27:03 UTC (rev 112734)
@@ -729,6 +729,8 @@
             self.addStep(trigger.Trigger, schedulerNames=triggers)
 
 def unitTestsSupported(configuration, platform):
+    if (platform.startswith('mac') and configuration == "release")
+        return False; # https://bugs.webkit.org/show_bug.cgi?id=82652
     return (platform == 'win' or platform.startswith('mac')
             or (platform.startswith('chromium') and platform != 'chromium-android'))
 

Modified: trunk/Tools/ChangeLog (112733 => 112734)


--- trunk/Tools/ChangeLog	2012-03-30 22:26:44 UTC (rev 112733)
+++ trunk/Tools/ChangeLog	2012-03-30 22:27:03 UTC (rev 112734)
@@ -1,3 +1,17 @@
+2012-03-30  Simon Fraser  <[email protected]>
+
+        Disable run-api-tests on release mac builds
+        https://bugs.webkit.org/show_bug.cgi?id=82788
+
+        Reviewed by Ryosuke Niwa.
+        
+        TestWebKitAPI crashes every time in release builds currently
+        (https://bugs.webkit.org/show_bug.cgi?id=82652) so disable
+        run-api-tests on mac release builders.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+        (unitTestsSupported):
+
 2012-03-30  Chang Shu  <[email protected]>
 
         Unreviewed. Update my email.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to