Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: webkit/tools/layout_tests/run_webkit_tests.py

Issue 340064: Clobber layout test results at the beginning of each run.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/layout_tests/run_webkit_tests.py
===================================================================
--- webkit/tools/layout_tests/run_webkit_tests.py (revision 30603)
+++ webkit/tools/layout_tests/run_webkit_tests.py (working copy)
@@ -1031,6 +1031,15 @@
options.results_directory = path_utils.GetAbsolutePath(
os.path.join(basedir, options.target, options.results_directory))
+ if options.clobber_old_results:
+ # Just clobber the actual test results directories since the other files
+ # in the results directory are explicitly used for cross-run tracking.
+ test_dirs = ["LayoutTests", "chrome", "pending"]
tony 2009/11/02 19:36:54 Nit: Use () instead of [] to make it immutable.
+ for directory in test_dirs:
+ path = os.path.join(options.results_directory, directory)
+ if os.path.exists(path):
+ shutil.rmtree(path)
+
# Ensure platform is valid and force it to the form 'chromium-<platform>'.
options.platform = path_utils.PlatformName(options.platform)
@@ -1173,6 +1182,9 @@
option_parser.add_option("", "--full-results-html", action="store_true",
default=False, help="show all failures in "
"results.html, rather than only regressions")
+ option_parser.add_option("", "--clobber-old-results", action="store_true",
+ default=False, help="Clobbers test results from "
+ "previous runs.")
option_parser.add_option("", "--lint-test-files", action="store_true",
default=False, help="Makes sure the test files "
"parse for all configurations. Does not run any "
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698