summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-29 03:24:22 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-29 03:24:22 +0000
commitc9cb39ba03c55fc20d59fefc86191a7cccd10faf (patch)
treefe3a0f828a716e626982c7e218fc2493b138003a /chrome_frame
parent470b0dd143e12ded8d4b265ce43a313818bdc61c (diff)
downloadchromium_src-c9cb39ba03c55fc20d59fefc86191a7cccd10faf.zip
chromium_src-c9cb39ba03c55fc20d59fefc86191a7cccd10faf.tar.gz
chromium_src-c9cb39ba03c55fc20d59fefc86191a7cccd10faf.tar.bz2
Attempt to fix ChromeFrame perf test failures on the experimental builder. The test fails because of a crash while running
one of the chrome frame creation tests. This test causes a crash on the builder and it appears to occur because of multiple chrome frame dlls being loaded in the process. One from the regular release\servers folder and the other one from the reference build. Attempted fix is to add a sleep after the call to CoFreeUnusedLibraries to allow the currently loaded chrome frame binary to unload. TBR=amit Review URL: http://codereview.chromium.org/2840024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51095 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r--chrome_frame/test/perf/chrome_frame_perftest.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome_frame/test/perf/chrome_frame_perftest.cc b/chrome_frame/test/perf/chrome_frame_perftest.cc
index 5e1684a..c6e1d9d 100644
--- a/chrome_frame/test/perf/chrome_frame_perftest.cc
+++ b/chrome_frame/test/perf/chrome_frame_perftest.cc
@@ -792,6 +792,7 @@ class ChromeFrameActiveXMemoryTest : public MemoryTestBase {
PrintResults(test_name_.c_str());
CoFreeUnusedLibraries();
+ PlatformThread::Sleep(100);
}
void NavigateImpl(const std::string& url) {