Commit a16e8bc1 authored by tfarina's avatar tfarina Committed by Commit bot

Move run_webkit_tests.* script into their new home.

As we are removing webkit/ glue, we need a new home for these scripts.

BUG=338338
TEST=None
R=dpranke@chromium.org

Review URL: https://codereview.chromium.org/629083002

Cr-Commit-Position: refs/heads/master@{#299051}
parent 060ec966
ojan@chromium.org
dpranke@chromium.org
*
@python %~dp0\run_layout_tests.py %*
...@@ -10,7 +10,7 @@ import subprocess ...@@ -10,7 +10,7 @@ import subprocess
import sys import sys
def main(): def main():
src_dir = os.path.abspath(os.path.join(sys.path[0], '..', '..', '..')) src_dir = os.path.abspath(os.path.join(sys.path[0], '..', '..'))
script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools", script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools",
"Scripts") "Scripts")
script = os.path.join(script_dir, 'run-webkit-tests') script = os.path.join(script_dir, 'run-webkit-tests')
......
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
exec_dir=$(dirname $0) exec_dir=$(dirname $0)
if [ "$OSTYPE" = "cygwin" ]; then if [ "$OSTYPE" = "cygwin" ]; then
SCRIPT=$(cygpath -wa "$exec_dir/run_webkit_tests.py") SCRIPT=$(cygpath -wa "$exec_dir/run_layout_tests.py")
else else
SCRIPT="$exec_dir/run_webkit_tests.py" SCRIPT="$exec_dir/run_layout_tests.py"
fi fi
PYTHON_PROG=python PYTHON_PROG=python
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment