blob: be4ad2b7b6e279aae36747f1de0717422cadbae8 [file] [log] [blame]
// Copyright (c) 2012 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/bind.h"
#include "base/system/sys_info.h"
#include "base/test/launcher/unit_test_launcher.h"
#include "base/test/test_suite.h"
#include "build/build_config.h"
constexpr size_t kDefaultTestBatchLimit = 10;
int main(int argc, char** argv) {
base::TestSuite test_suite(argc, argv);
// Each test launches a complete set of components, so allow two CPU cores
// per test.
size_t jobs = base::SysInfo::NumberOfProcessors();
if (jobs > 1)
jobs /= 2;
return base::LaunchUnitTestsWithOptions(
argc, argv, jobs, kDefaultTestBatchLimit, true /* use_job_objects */,
base::BindOnce(&base::TestSuite::Run, base::Unretained(&test_suite)));
}