blob: 6e0958bbcdde9816b7899803a8628f7400138976 [file] [log] [blame]
// 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"
#include "chrome/test/base/chrome_test_suite.h"
class ChromeBrowserTestSuiteRunner : public ChromeTestSuiteRunner {
public:
int RunTestSuite(int argc, char** argv) override {
return ChromeTestSuite(argc, argv).Run();
}
};
int main(int argc, char** argv) {
// Always run browser perf tests serially - parallel running would be less
// deterministic and distort perf measurements.
ChromeBrowserTestSuiteRunner runner;
return LaunchChromeTests(1, &runner, argc, argv);
}