Changeset 89791 in webkit


Ignore:
Timestamp:
Jun 27, 2011 12:10:00 AM (13 years ago)
Author:
abarth@webkit.org
Message:

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.
Location:
trunk/Tools
Files:
2 added
3 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r89788 r89791  
     12011-06-27  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Move deduplicate_tests.py into webkitpy.to_be_moved
     6        https://bugs.webkit.org/show_bug.cgi?id=63426
     7
     8        deduplicate_tests.py doesn't haven anything to do with layout tests.
     9        It's really a separate script.  This patch moves it to the (new)
     10        to_be_moved package so that it doesn't distract us when working on NRWT.
     11
     12        * Scripts/deduplicate-tests:
     13        * Scripts/webkitpy/layout_tests/deduplicate_tests.py: Removed.
     14        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py: Removed.
     15        * Scripts/webkitpy/test/main.py:
     16        * Scripts/webkitpy/to_be_moved: Added.
     17        * Scripts/webkitpy/to_be_moved/__init__.py: Added.
     18        * Scripts/webkitpy/to_be_moved/deduplicate_tests.py: Copied from Tools/Scripts/webkitpy/layout_tests/deduplicate_tests.py.
     19        * Scripts/webkitpy/to_be_moved/deduplicate_tests_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py.
     20
    1212011-06-26  Adam Barth  <abarth@webkit.org>
    222
  • trunk/Tools/Scripts/deduplicate-tests

    r66027 r89791  
    3838import optparse
    3939import webkitpy.common.system.logutils as logutils
    40 import webkitpy.layout_tests.deduplicate_tests as deduplicate_tests
     40import webkitpy.to_be_moved.deduplicate_tests as deduplicate_tests
    4141
    4242
  • trunk/Tools/Scripts/webkitpy/test/main.py

    r85969 r89791  
    9191        return module_path not in [
    9292            # FIXME: This file also requires common.checkout to work
    93             'webkitpy.layout_tests.deduplicate_tests_unittest',
     93            'webkitpy.to_be_moved.deduplicate_tests_unittest',
    9494        ]
    9595
Note: See TracChangeset for help on using the changeset viewer.