summaryrefslogtreecommitdiffstats
path: root/chrome_frame/test/perf/run_all.cc
blob: dce49fca4a5723052fffcb5f17f6c6b0c0deff39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/memory/scoped_ptr.h"
#include "base/test/perf_test_suite.h"
#include "base/threading/platform_thread.h"
#include "chrome/common/chrome_paths.h"
#include "chrome_frame/test/chrome_frame_test_utils.h"
#include "chrome_frame/test_utils.h"
#include "chrome_frame/utils.h"

void PureCall() {
  __debugbreak();
}

int main(int argc, char **argv) {
  base::PerfTestSuite perf_suite(argc, argv);
  base::PlatformThread::SetName("ChromeFrame perf tests");

  _set_purecall_handler(PureCall);

  SetConfigBool(kChromeFrameHeadlessMode, true);
  SetConfigBool(kChromeFrameUnpinnedMode, true);

  // Use ctor/raii to register the local Chrome Frame dll.
  scoped_ptr<ScopedChromeFrameRegistrar> registrar(
      new ScopedChromeFrameRegistrar(
          ScopedChromeFrameRegistrar::SYSTEM_LEVEL));

  base::ProcessHandle crash_service = chrome_frame_test::StartCrashService();

  int ret = perf_suite.Run();

  DeleteConfigValue(kChromeFrameHeadlessMode);
  DeleteConfigValue(kChromeFrameUnpinnedMode);

  if (crash_service)
    base::KillProcess(crash_service, 0, false);
  return ret;
}