+2011-06-27 Adam Barth <abarth@webkit.org>
+
+ Reviewed by Eric Seidel.
+
+ Move deduplicate_tests.py into webkitpy.to_be_moved
+ https://bugs.webkit.org/show_bug.cgi?id=63426
+
+ deduplicate_tests.py doesn't haven anything to do with layout tests.
+ It's really a separate script. This patch moves it to the (new)
+ to_be_moved package so that it doesn't distract us when working on NRWT.
+
+ * Scripts/deduplicate-tests:
+ * Scripts/webkitpy/layout_tests/deduplicate_tests.py: Removed.
+ * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py: Removed.
+ * Scripts/webkitpy/test/main.py:
+ * Scripts/webkitpy/to_be_moved: Added.
+ * Scripts/webkitpy/to_be_moved/__init__.py: Added.
+ * Scripts/webkitpy/to_be_moved/deduplicate_tests.py: Copied from Tools/Scripts/webkitpy/layout_tests/deduplicate_tests.py.
+ * Scripts/webkitpy/to_be_moved/deduplicate_tests_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py.
+
2011-06-26 Adam Barth <abarth@webkit.org>
Rubber-stamped by Eric Seidel.
import optparse
import webkitpy.common.system.logutils as logutils
-import webkitpy.layout_tests.deduplicate_tests as deduplicate_tests
+import webkitpy.to_be_moved.deduplicate_tests as deduplicate_tests
def parse_args():
return module_path not in [
# FIXME: This file also requires common.checkout to work
- 'webkitpy.layout_tests.deduplicate_tests_unittest',
+ 'webkitpy.to_be_moved.deduplicate_tests_unittest',
]
def run_tests(self, sys_argv, external_package_paths=None):
--- /dev/null
+# Required for Python to search this directory for module files
+# This directory houses Python modules that do not yet have a proper home.
+#
+# Some of the Python modules in this directory aren't really part of webkitpy
+# in the sense that they're not classes that are meant to be used as part of
+# the webkitpy library. Instead, they're a bunch of helper code for individual
+# scripts in in Tools/Scripts.
+#
+# Really, all this code should either be refactored or moved somewhere else,
+# hence the somewhat lame name for this directory.