Title: [195557] trunk/Tools
Revision
195557
Author
[email protected]
Date
2016-01-25 14:37:49 -0800 (Mon, 25 Jan 2016)

Log Message

Failing to upload to flakiness dashboard should not be a hard error
https://bugs.webkit.org/show_bug.cgi?id=153444
<rdar://problem/22146294>

Reviewed by Alexey Proskuryakov.

* Scripts/webkitpy/layout_tests/controllers/manager.py:
(Manager._upload_json_files): If JSON file is not generated, do not try to upload it.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (195556 => 195557)


--- trunk/Tools/ChangeLog	2016-01-25 22:35:02 UTC (rev 195556)
+++ trunk/Tools/ChangeLog	2016-01-25 22:37:49 UTC (rev 195557)
@@ -1,3 +1,14 @@
+2016-01-25  Aakash Jain  <[email protected]>
+
+        Failing to upload to flakiness dashboard should not be a hard error
+        https://bugs.webkit.org/show_bug.cgi?id=153444
+        <rdar://problem/22146294>
+
+        Reviewed by Alexey Proskuryakov.
+
+        * Scripts/webkitpy/layout_tests/controllers/manager.py:
+        (Manager._upload_json_files): If JSON file is not generated, do not try to upload it.
+
 2016-01-25  Daniel Bates  <[email protected]>
 
         WebKitTestRunner: Credential cache is not cleared between tests

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py (195556 => 195557)


--- trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py	2016-01-25 22:35:02 UTC (rev 195556)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py	2016-01-25 22:37:49 UTC (rev 195557)
@@ -381,6 +381,7 @@
             _log.debug("Finished writing JSON file for the test results server.")
         else:
             _log.debug("Failed to generate JSON file for the test results server.")
+            return
 
         json_files = ["incremental_results.json", "full_results.json", "times_ms.json"]
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to