Skip to content

Commit

Permalink
Move run_webkit_tests.* script into their new home.
Browse files Browse the repository at this point in the history
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}
  • Loading branch information
tfarina authored and Commit bot committed Oct 10, 2014
1 parent 060ec96 commit a16e8bc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions blink/tools/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ojan@chromium.org
dpranke@chromium.org
*
1 change: 1 addition & 0 deletions blink/tools/run_layout_tests.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@python %~dp0\run_layout_tests.py %*
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import sys

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",
"Scripts")
script = os.path.join(script_dir, 'run-webkit-tests')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
exec_dir=$(dirname $0)

if [ "$OSTYPE" = "cygwin" ]; then
SCRIPT=$(cygpath -wa "$exec_dir/run_webkit_tests.py")
SCRIPT=$(cygpath -wa "$exec_dir/run_layout_tests.py")
else
SCRIPT="$exec_dir/run_webkit_tests.py"
SCRIPT="$exec_dir/run_layout_tests.py"
fi

PYTHON_PROG=python
Expand Down
1 change: 0 additions & 1 deletion webkit/tools/layout_tests/run_webkit_tests.bat

This file was deleted.

0 comments on commit a16e8bc

Please sign in to comment.