summaryrefslogtreecommitdiffstats
path: root/chrome_frame/test/perf/run_all.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/test/perf/run_all.cc')
-rw-r--r--chrome_frame/test/perf/run_all.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome_frame/test/perf/run_all.cc b/chrome_frame/test/perf/run_all.cc
index 25ffcd3..a5f4738 100644
--- a/chrome_frame/test/perf/run_all.cc
+++ b/chrome_frame/test/perf/run_all.cc
@@ -15,6 +15,8 @@ int main(int argc, char **argv) {
PlatformThread::SetName("ChromeFrame perf tests");
SetConfigBool(kChromeFrameHeadlessMode, true);
+ SetConfigBool(kChromeFrameUnpinnedMode, true);
+
base::ProcessHandle crash_service = chrome_frame_test::StartCrashService();
// Use ctor/raii to register the local Chrome Frame dll.
@@ -23,6 +25,8 @@ int main(int argc, char **argv) {
int ret = perf_suite.Run();
DeleteConfigValue(kChromeFrameHeadlessMode);
+ DeleteConfigValue(kChromeFrameUnpinnedMode);
+
if (crash_service)
base::KillProcess(crash_service, 0, false);
return ret;