Commit 7a19767d authored by phoglund@chromium.org's avatar phoglund@chromium.org

Temporarily disabling apprtc teardown to debug apprtc problems.

BUG=373252
TBR=grunell@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274301 0039d316-1c4b-4281-b951-d872f2087c98
parent c1cf83e8
...@@ -61,11 +61,17 @@ class WebRtcApprtcBrowserTest : public WebRtcTestBase { ...@@ -61,11 +61,17 @@ class WebRtcApprtcBrowserTest : public WebRtcTestBase {
virtual void TearDown() OVERRIDE { virtual void TearDown() OVERRIDE {
// Kill any processes we may have brought up. // Kill any processes we may have brought up.
// TODO(phoglund): Temporarily disabling on win to debug
// test hang-on-shutdown.
LOG(INFO) << "Entering TearDown";
#if !defined(OS_WIN)
if (dev_appserver_ != base::kNullProcessHandle) if (dev_appserver_ != base::kNullProcessHandle)
base::KillProcess(dev_appserver_, 0, false); base::KillProcess(dev_appserver_, 0, false);
#endif
// TODO(phoglund): Find some way to shut down Firefox cleanly on Windows. // TODO(phoglund): Find some way to shut down Firefox cleanly on Windows.
if (firefox_ != base::kNullProcessHandle) if (firefox_ != base::kNullProcessHandle)
base::KillProcess(firefox_, 0, false); base::KillProcess(firefox_, 0, false);
LOG(INFO) << "Exiting TearDown";
} }
protected: protected:
......
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