Title: [91379] trunk/Tools
Revision
91379
Author
[email protected]
Date
2011-07-20 11:14:30 -0700 (Wed, 20 Jul 2011)

Log Message

NRWT results uses too much space per run
https://bugs.webkit.org/show_bug.cgi?id=64845

Reviewed by Ojan Vafai.

Removing these files saves about 750K per build.

* Scripts/webkitpy/layout_tests/controllers/manager.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (91378 => 91379)


--- trunk/Tools/ChangeLog	2011-07-20 18:07:47 UTC (rev 91378)
+++ trunk/Tools/ChangeLog	2011-07-20 18:14:30 UTC (rev 91379)
@@ -1,3 +1,14 @@
+2011-07-20  Adam Barth  <[email protected]>
+
+        NRWT results uses too much space per run
+        https://bugs.webkit.org/show_bug.cgi?id=64845
+
+        Reviewed by Ojan Vafai.
+
+        Removing these files saves about 750K per build.
+
+        * Scripts/webkitpy/layout_tests/controllers/manager.py:
+
 2011-07-20  Zan Dobersek  <[email protected]>
 
         [Gtk] [NRWT] Xvfb produces a lot of stderr output

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


--- trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py	2011-07-20 18:07:47 UTC (rev 91378)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py	2011-07-20 18:14:30 UTC (rev 91379)
@@ -1084,6 +1084,14 @@
 
         generator.upload_json_files(json_files)
 
+        incremental_results_path = self._fs.join(self._results_directory, "incremental_results.json")
+
+        # Remove these files from the results directory so they don't take up too much space on the buildbot.
+        # The tools use the version we uploaded to the results server anyway.
+        self._fs.remove(expectations_path)
+        self._fs.remove(times_json_path)
+        self._fs.remove(incremental_results_path)
+
     def print_config(self):
         """Prints the configuration for the test run."""
         p = self._printer
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to