Title: [169256] trunk/Tools
Revision
169256
Author
[email protected]
Date
2014-05-23 03:29:21 -0700 (Fri, 23 May 2014)

Log Message

[GTK] GObject DOM bindings API break test should fail in the bots when the command fails to run
https://bugs.webkit.org/show_bug.cgi?id=133209

Reviewed by Sergio Villar Senin.

Return FAILURE when the command failed to run.

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

Modified Paths

Diff

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


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2014-05-23 09:57:56 UTC (rev 169255)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2014-05-23 10:29:21 UTC (rev 169256)
@@ -683,6 +683,8 @@
             return FAILURE
         if self.newAPI:
             return WARNINGS
+        if cmd.rc != 0:
+            return FAILURE
         return SUCCESS
 
 class RunWebKitLeakTests(RunWebKitTests):

Modified: trunk/Tools/ChangeLog (169255 => 169256)


--- trunk/Tools/ChangeLog	2014-05-23 09:57:56 UTC (rev 169255)
+++ trunk/Tools/ChangeLog	2014-05-23 10:29:21 UTC (rev 169256)
@@ -1,3 +1,15 @@
+2014-05-23  Carlos Garcia Campos  <[email protected]>
+
+        [GTK] GObject DOM bindings API break test should fail in the bots when the command fails to run
+        https://bugs.webkit.org/show_bug.cgi?id=133209
+
+        Reviewed by Sergio Villar Senin.
+
+        Return FAILURE when the command failed to run.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+        (RunGtkWebKitGObjectDOMBindingsAPIBreakTests.evaluateCommand):
+
 2014-05-23  Alberto Garcia  <[email protected]>
 
         [GTK] Install libharfbuzz-dev in Tools/gtk/install-dependencies
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to