Commit dc9066e0 authored by phoglund@chromium.org's avatar phoglund@chromium.org

Temporarily disabling audio quality test on win 8.

BUG=379798
TBR=tommi@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274323 0039d316-1c4b-4281-b951-d872f2087c98
parent 607460b9
......@@ -353,6 +353,11 @@ IN_PROC_BROWSER_TEST_P(WebRtcAudioQualityBrowserTest,
LOG(ERROR) << "This test is not implemented for Windows XP.";
return;
}
if (OnWin8()) {
// http://crbug.com/379798.
LOG(ERROR) << "Temporarily disabled for Win 8.";
return;
}
ASSERT_TRUE(test::HasReferenceFilesInCheckout());
ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
......
......@@ -360,3 +360,11 @@ bool WebRtcTestBase::OnWinXp() const {
return false;
#endif
}
bool WebRtcTestBase::OnWin8() const {
#if defined(OS_WIN)
return base::win::GetVersion() > base::win::VERSION_WIN7;
#else
return false;
#endif
}
......@@ -113,6 +113,9 @@ class WebRtcTestBase : public InProcessBrowserTest {
// Returns true if we're on WinXP, that lovely operating system of bliss.
bool OnWinXp() const;
// Returns true if we're on win 8.
bool OnWin8() const;
private:
void CloseInfoBarInTab(content::WebContents* tab_contents,
infobars::InfoBar* infobar) const;
......
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