summaryrefslogtreecommitdiffstats
path: root/chrome/test/base/browser_perf_tests_main.cc
blob: e9aafbf7b368c8572f9befeef2965168a46432c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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.

#include "chrome/test/base/chrome_test_launcher.h"

int main(int argc, char** argv) {
  // Always run browser perf tests serially - parallel running would be less
  // deterministic and distort perf measurements.
  return LaunchChromeTests(1, argc, argv);
}