Changeset 55264 in webkit


Ignore:
Timestamp:
Feb 25, 2010 4:49:30 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-02-25 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Rename run-chromium-webkit-tests to new-run-webkit-tests to stop confusion
https://bugs.webkit.org/show_bug.cgi?id=35408

  • Scripts/new-run-webkit-tests: Added.
  • Scripts/run-chromium-webkit-tests: Removed.
  • Scripts/webkitpy/layout_tests/run_webkit_tests.py: Renamed from WebKitTools/Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py.
Location:
trunk/WebKitTools
Files:
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r55243 r55264  
     12010-02-25  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Rename run-chromium-webkit-tests to new-run-webkit-tests to stop confusion
     6        https://bugs.webkit.org/show_bug.cgi?id=35408
     7
     8        * Scripts/new-run-webkit-tests: Added.
     9        * Scripts/run-chromium-webkit-tests: Removed.
     10        * Scripts/webkitpy/layout_tests/run_webkit_tests.py: Renamed from WebKitTools/Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py.
     11
    1122010-02-25  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/Scripts/new-run-webkit-tests

    r55261 r55264  
    2828# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2929
    30 """Wrapper around webkitpy/layout_tests/run-chromium-webkit-tests.py"""
     30"""Wrapper around webkitpy/layout_tests/run_webkit_tests.py"""
    3131import os
    3232import sys
    3333
    34 sys.path.append(os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])),
    35                              "webkitpy", "layout_tests"))
    36 sys.path.append(os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])),
    37                              "webkitpy", "thirdparty"))  # For simplejson.
    38 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0]))))
    39 import run_chromium_webkit_tests
     34_scripts_directory = os.path.dirname(os.path.abspath(sys.argv[0]))
     35_webkitpy_directory = os.path.join(scripts_directory, "webkitpy")
     36sys.path.append(os.path.join(_webkitpy_directory, "layout_tests"))
     37sys.path.append(os.path.join(_webkitpy_directory, "thirdparty"))  # For simplejson.
     38import run_webkit_tests
    4039
    4140if __name__ == '__main__':
    42     options, args = run_chromium_webkit_tests.parse_args()
    43     run_chromium_webkit_tests.main(options, args)
     41    options, args = run_webkit_tests.parse_args()
     42    run_webkit_tests.main(options, args)
Note: See TracChangeset for help on using the changeset viewer.