Changeset 91379 in webkit
- Timestamp:
- Jul 20, 2011, 11:14:30 AM (14 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r91374 r91379 1 2011-07-20 Adam Barth <abarth@webkit.org> 2 3 NRWT results uses too much space per run 4 https://bugs.webkit.org/show_bug.cgi?id=64845 5 6 Reviewed by Ojan Vafai. 7 8 Removing these files saves about 750K per build. 9 10 * Scripts/webkitpy/layout_tests/controllers/manager.py: 11 1 12 2011-07-20 Zan Dobersek <zandobersek@gmail.com> 2 13 -
trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
r91245 r91379 1085 1085 generator.upload_json_files(json_files) 1086 1086 1087 incremental_results_path = self._fs.join(self._results_directory, "incremental_results.json") 1088 1089 # Remove these files from the results directory so they don't take up too much space on the buildbot. 1090 # The tools use the version we uploaded to the results server anyway. 1091 self._fs.remove(expectations_path) 1092 self._fs.remove(times_json_path) 1093 self._fs.remove(incremental_results_path) 1094 1087 1095 def print_config(self): 1088 1096 """Prints the configuration for the test run."""
Note:
See TracChangeset
for help on using the changeset viewer.