diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-25 22:06:16 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-25 22:06:16 +0000 |
commit | c2a6cc970520d5d9d571f9c5d6468c1f8ae6b5bb (patch) | |
tree | e84302b154378356da2934ee6c1841221b05234b | |
parent | ae5670e39c35fea528c50e95eee5a3de1cc0d192 (diff) | |
download | chromium_src-c2a6cc970520d5d9d571f9c5d6468c1f8ae6b5bb.zip chromium_src-c2a6cc970520d5d9d571f9c5d6468c1f8ae6b5bb.tar.gz chromium_src-c2a6cc970520d5d9d571f9c5d6468c1f8ae6b5bb.tar.bz2 |
Disable the new tab reference tests on mac since the reference build
doesn't seem to support all the IPC messages.
BUG=28028
TBR=chase
Review URL: http://codereview.chromium.org/437072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33134 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/test/startup/feature_startup_test.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/test/startup/feature_startup_test.cc b/chrome/test/startup/feature_startup_test.cc index b75c8ea..e6aadc4 100644 --- a/chrome/test/startup/feature_startup_test.cc +++ b/chrome/test/startup/feature_startup_test.cc @@ -174,22 +174,30 @@ class NewTabUIStartupTest : public UITest { } }; +#if !defined(OS_MACOSX) +// TODO(tc): Update the Mac reference build to support +// WaitForInitialNewTabUILoad. TEST_F(NewTabUIStartupTest, PerfRefCold) { UseReferenceBuild(); RunStartupTest("tab_cold_ref", false /* cold */, true /* important */, UITest::DEFAULT_THEME); } +#endif TEST_F(NewTabUIStartupTest, PerfCold) { RunStartupTest("tab_cold", false /* cold */, true /* important */, UITest::DEFAULT_THEME); } +#if !defined(OS_MACOSX) +// TODO(tc): Update the Mac reference build to support +// WaitForInitialNewTabUILoad. TEST_F(NewTabUIStartupTest, PerfRefWarm) { UseReferenceBuild(); RunStartupTest("tab_warm_ref", true /* warm */, true /* not important */, UITest::DEFAULT_THEME); } +#endif TEST_F(NewTabUIStartupTest, PerfWarm) { RunStartupTest("tab_warm", true /* warm */, true /* not important */, |