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

Unified Diff: third_party/WebKit/Tools/Scripts/update-w3c-test-expections

Issue 2136723002: Create test expectations line automatically from failing test results (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add function to write to TestExpectations with unittest Created 4 years, 5 months 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
Index: third_party/WebKit/Tools/Scripts/update-w3c-test-expections
diff --git a/chrome/test/kasko/py/kasko/__init__.py b/third_party/WebKit/Tools/Scripts/update-w3c-test-expections
similarity index 61%
copy from chrome/test/kasko/py/kasko/__init__.py
copy to third_party/WebKit/Tools/Scripts/update-w3c-test-expections
index 82c0441ba24ba36092b528a352d3cb8298cb2518..9cf36a7ffef720f42edbfa7489a04f1b1585dd94 100755
--- a/chrome/test/kasko/py/kasko/__init__.py
+++ b/third_party/WebKit/Tools/Scripts/update-w3c-test-expections
@@ -3,10 +3,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import config
-import crash_server
-import exceptions
-import integration_test
-import process
-import report
-import util
+import sys
+
+from webkitpy.w3c.update_w3c_test_expectations import main
+
+
+sys.exit(main())

Powered by Google App Engine
This is Rietveld 408576698