Commit f51b26f9 authored by enne@chromium.org's avatar enne@chromium.org

Disable DromaeoTest.DOMCorePerf on Windows because it is flaky on Win7

BUG=134570


Review URL: https://chromiumcodereview.appspot.com/10836269

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152428 0039d316-1c4b-4281-b951-d872f2087c98
parent bf585946
......@@ -134,7 +134,13 @@ class DromaeoReferenceTest : public DromaeoTest {
}
};
TEST_F(DromaeoTest, DOMCorePerf) {
#if defined(OS_WIN)
// http://crbug.com/134570 - is flaky on Win7 perf bot
#define MAYBE_DOMCorePerf DISABLED_DOMCorePerf
#else
#define MAYBE_DOMCorePerf DOMCorePerf
#endif
TEST_F(DromaeoTest, MAYBE_DOMCorePerf) {
if (!CommandLine::ForCurrentProcess()->HasSwitch(kRunDromaeo))
return;
......@@ -148,7 +154,7 @@ TEST_F(DromaeoTest, JSLibPerf) {
RunTest("jslib");
}
TEST_F(DromaeoReferenceTest, DOMCorePerf) {
TEST_F(DromaeoReferenceTest, MAYBE_DOMCorePerf) {
if (!CommandLine::ForCurrentProcess()->HasSwitch(kRunDromaeo))
return;
......
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