Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: webkit/tools/layout_tests/rebaseline.sh

Issue 6015002: Rename WebKitTools->Tools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/tools/layout_tests/rebaseline.bat ('k') | webkit/tools/layout_tests/run_http_server.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 2
3 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 exec_dir=$(dirname $0) 7 exec_dir=$(dirname $0)
8 8
9 if grep -q REBASELINE $exec_dir/test_expectations.txt ; then 9 if grep -q REBASELINE $exec_dir/test_expectations.txt ; then
10 echo "test_expectations.txt has been moved upstream! The test_expectations.txt " 10 echo "test_expectations.txt has been moved upstream! The test_expectations.txt "
11 echo "here is just a set of local overrides. You have to put the REBASELINE " 11 echo "here is just a set of local overrides. You have to put the REBASELINE "
12 echo "tags in the upstream version and commit the new baselines into the WebKi t" 12 echo "tags in the upstream version and commit the new baselines into the WebKi t"
13 echo "tree." 13 echo "tree."
14 echo 14 echo
15 echo "Try:" 15 echo "Try:"
16 echo "cd ../../../third_party/WebKit" 16 echo "cd ../../../third_party/WebKit"
17 echo "\$EDITOR LayoutTests/platform/chromium/test_expectations.txt" 17 echo "\$EDITOR LayoutTests/platform/chromium/test_expectations.txt"
18 echo "./WebKitTools/Scripts/rebaseline-chromium-webkit-tests" 18 echo "./Tools/Scripts/rebaseline-chromium-webkit-tests"
19 echo 19 echo
20 echo "See also https://trac.webkit.org/wiki/Rebaseline" 20 echo "See also https://trac.webkit.org/wiki/Rebaseline"
21 exit 1 21 exit 1
22 fi 22 fi
23 23
24 PYTHON_PROG=python 24 PYTHON_PROG=python
25 25
26 "$PYTHON_PROG" "$exec_dir/../../../third_party/WebKit/WebKitTools/Scripts/rebase line-chromium-webkit-tests" "$@" 26 "$PYTHON_PROG" "$exec_dir/../../../third_party/WebKit/Tools/Scripts/rebaseline-c hromium-webkit-tests" "$@"
OLDNEW
« no previous file with comments | « webkit/tools/layout_tests/rebaseline.bat ('k') | webkit/tools/layout_tests/run_http_server.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698