| Index: webkit/tools/layout_tests/run_webkit_tests.py
|
| diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py
|
| index b986870517ad7202ef7c00efc1c16f3f5ca0f95b..7439a6a166fe5df6a150d129278ba5efe3b633a6 100755
|
| --- a/webkit/tools/layout_tests/run_webkit_tests.py
|
| +++ b/webkit/tools/layout_tests/run_webkit_tests.py
|
| @@ -4,7 +4,7 @@
|
| # found in the LICENSE file.
|
|
|
| """Wrapper around
|
| - third_party/WebKit/WebKitTools/Scripts/new-run-webkit-tests"""
|
| + third_party/WebKit/Tools/Scripts/new-run-webkit-tests"""
|
| import os
|
| import subprocess
|
| import sys
|
| @@ -12,7 +12,7 @@ import sys
|
| def main():
|
| cmd = [sys.executable]
|
| src_dir = os.path.abspath(os.path.join(sys.path[0], '..', '..', '..'))
|
| - script_dir=os.path.join(src_dir, "third_party", "WebKit", "WebKitTools",
|
| + script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools",
|
| "Scripts")
|
| script = os.path.join(script_dir, 'new-run-webkit-tests')
|
| cmd.append(script)
|
| @@ -23,4 +23,3 @@ def main():
|
|
|
| if __name__ == '__main__':
|
| sys.exit(main())
|
| -
|
|
|