diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-31 17:41:07 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-31 17:41:07 +0000 |
commit | cb456f494ff09efb876af4850fc0ff7fb8f9c6ac (patch) | |
tree | 136265f711fe4957df0e30cd7b9b295e5385ac1a /content/browser/appcache | |
parent | 8286f51aaab9c769e70a1bcad5c568cec6636ba0 (diff) | |
download | chromium_src-cb456f494ff09efb876af4850fc0ff7fb8f9c6ac.zip chromium_src-cb456f494ff09efb876af4850fc0ff7fb8f9c6ac.tar.gz chromium_src-cb456f494ff09efb876af4850fc0ff7fb8f9c6ac.tar.bz2 |
GTTF: Clean up UITest::{Start,Stop}HttpServer:
- On Windows, LaunchAppWithHandleInheritance was not needed,
just LaunchApp is sufficient
- Return values were not checked; I wonder how many of those
resulted in mysterious flaky failures
- Add a scoper object (LayoutTestHttpServer), to make sure
we stop the server even if some other assertions fail.
Note: this change may expose failures that were
silently ingored before. This is a *good* thing.
BUG=none
Review URL: http://codereview.chromium.org/7084038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87320 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/appcache')
-rw-r--r-- | content/browser/appcache/appcache_ui_test.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/content/browser/appcache/appcache_ui_test.cc b/content/browser/appcache/appcache_ui_test.cc index 58ca32b..6200226 100644 --- a/content/browser/appcache/appcache_ui_test.cc +++ b/content/browser/appcache/appcache_ui_test.cc @@ -3,6 +3,7 @@ // found in the LICENSE file. #include "base/file_path.h" +#include "chrome/test/layout_test_http_server.h" #include "chrome/test/ui/ui_layout_test.h" class AppCacheUITest : public UILayoutTest { @@ -16,10 +17,11 @@ class AppCacheUITest : public UILayoutTest { appcache_test_dir = appcache_test_dir.AppendASCII("appcache"); InitializeForLayoutTest(http_test_dir, appcache_test_dir, kHttpPort); - StartHttpServer(new_http_root_dir_); + LayoutTestHttpServer http_server(new_http_root_dir_, kHttpPort); + ASSERT_TRUE(http_server.Start()); for (int i = 0; i < num_tests; ++i) RunLayoutTest(tests[i], kHttpPort); - StopHttpServer(); + ASSERT_TRUE(http_server.Stop()); } protected: |