summaryrefslogtreecommitdiffstats
path: root/chrome/test/ui/ui_test.cc
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-04 05:42:57 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-04 05:42:57 +0000
commitefbde738945c2eef39cd50f55dee9d33767ae57e (patch)
tree92b892e29c846fb7d97333f555a4bc0093f0f3be /chrome/test/ui/ui_test.cc
parent1ed7b3dc2b38c5d6930e103bea1fcfdffab7db7a (diff)
downloadchromium_src-efbde738945c2eef39cd50f55dee9d33767ae57e.zip
chromium_src-efbde738945c2eef39cd50f55dee9d33767ae57e.tar.gz
chromium_src-efbde738945c2eef39cd50f55dee9d33767ae57e.tar.bz2
Flip the ui_tests framework to use the upstream http_server start code
BUG=none R=dglazkov@chromium.org TEST=unit_tests passes Review URL: http://codereview.chromium.org/660416 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40603 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui/ui_test.cc')
-rw-r--r--chrome/test/ui/ui_test.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/test/ui/ui_test.cc b/chrome/test/ui/ui_test.cc
index 08ed51e..6a52780 100644
--- a/chrome/test/ui/ui_test.cc
+++ b/chrome/test/ui/ui_test.cc
@@ -287,12 +287,13 @@ static CommandLine* CreateHttpServerCommandLine() {
PathService::Get(base::DIR_SOURCE_ROOT, &src_path);
FilePath script_path(src_path);
- script_path = script_path.AppendASCII("webkit");
- script_path = script_path.AppendASCII("tools");
- script_path = script_path.AppendASCII("layout_tests");
+ script_path = script_path.AppendASCII("third_party");
+ script_path = script_path.AppendASCII("WebKit");
+ script_path = script_path.AppendASCII("WebKitTools");
+ script_path = script_path.AppendASCII("Scripts");
script_path = script_path.AppendASCII("webkitpy");
script_path = script_path.AppendASCII("layout_tests");
- script_path = script_path.AppendASCII("layout_package");
+ script_path = script_path.AppendASCII("port");
script_path = script_path.AppendASCII("http_server.py");
CommandLine* cmd_line = CreatePythonCommandLine();