Changeset 91379 in webkit


Ignore:
Timestamp:
Jul 20, 2011, 11:14:30 AM (14 years ago)
Author:
abarth@webkit.org
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r91374 r91379  
     12011-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
    1122011-07-20  Zan Dobersek  <zandobersek@gmail.com>
    213
  • trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py

    r91245 r91379  
    10851085        generator.upload_json_files(json_files)
    10861086
     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
    10871095    def print_config(self):
    10881096        """Prints the configuration for the test run."""
Note: See TracChangeset for help on using the changeset viewer.