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

Unified Diff: Tools/Scripts/convert-test-expectations

Issue 25892005: Remove some unused scripts from Tools/Scripts/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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
« no previous file with comments | « Tools/Scripts/check-for-inappropriate-objc-class-names ('k') | Tools/Scripts/execAppWithEnv » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/convert-test-expectations
diff --git a/Tools/Scripts/convert-test-expectations b/Tools/Scripts/convert-test-expectations
deleted file mode 100755
index 7ee5aa173c9fc95af7403b524464304f847e4db1..0000000000000000000000000000000000000000
--- a/Tools/Scripts/convert-test-expectations
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/python
-
-# FIXME: Delete this file after all of the TestExpectations are converted.
-
-import sys
-
-from webkitpy.common.host import Host
-from webkitpy.layout_tests.models.test_expectations import TestExpectationParser
-
-host = Host()
-port = host.port_factory.get(sys.argv[1])
-filename = sys.argv[2]
-contents = host.filesystem.read_text_file(filename)
-
-parser = TestExpectationParser(port, [], False)
-expectation_lines = parser.parse(filename, contents)
-for line in expectation_lines:
- new_line = line.to_string(parser._test_configuration_converter)
- print new_line
« no previous file with comments | « Tools/Scripts/check-for-inappropriate-objc-class-names ('k') | Tools/Scripts/execAppWithEnv » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698