summaryrefslogtreecommitdiffstats
path: root/ipc/mojo/run_all_perftests.cc
blob: a942b8b57496f6401f833bbea96b52168ceb8138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2013 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.

// Copied from mojo/edk/test/run_all_perftests.cc.

#include "base/command_line.h"
#include "base/test/perf_test_suite.h"
#include "mojo/edk/embedder/embedder.h"

int main(int argc, char** argv) {
  base::PerfTestSuite test(argc, argv);

  mojo::edk::Init();

  return test.Run();
}