Changeset 60875 in webkit


Ignore:
Timestamp:
Jun 8, 2010 6:02:44 PM (14 years ago)
Author:
ukai@chromium.org
Message:

2010-06-08 Fumitoshi Ukai <ukai@chromium.org>

Reviewed by Eric Seidel.

old-run-webkit-tests should use ensure-valid-python to check if it can run the websockets tests
https://bugs.webkit.org/show_bug.cgi?id=39058

  • Scripts/old-run-webkit-tests: use sourceDir() to find ensure-valid-python in checkPythonVersion()
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r60845 r60875  
     12010-06-08  Fumitoshi Ukai  <ukai@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        old-run-webkit-tests should use ensure-valid-python to check if it can run the websockets tests
     6        https://bugs.webkit.org/show_bug.cgi?id=39058
     7
     8        * Scripts/old-run-webkit-tests:
     9         use sourceDir() to find ensure-valid-python in checkPythonVersion()
     10
    1112010-06-08  Andras Becsi  <abecsi@webkit.org>
    212
  • trunk/WebKitTools/Scripts/old-run-webkit-tests

    r60652 r60875  
    14391439sub checkPythonVersion()
    14401440{
    1441     system "WebKitTools/Scripts/ensure-valid-python", "--check-only";
     1441    # we have not chdir to sourceDir yet.
     1442    system sourceDir() . "/WebKitTools/Scripts/ensure-valid-python", "--check-only";
    14421443    return exitStatus($?) == 0;
    14431444}
Note: See TracChangeset for help on using the changeset viewer.