| // Copyright 2014 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/test/launcher/unit_test_launcher.h" |
| #include "base/test/test_suite.h" |
| #include "build/build_config.h" |
| #include "media/base/media.h" |
| |
| class TestSuiteNoAtExit : public base::TestSuite { |
| public: |
| TestSuiteNoAtExit(int argc, char** argv) : TestSuite(argc, argv) {} |
| ~TestSuiteNoAtExit() override = default; |
| |
| protected: |
| void Initialize() override; |
| }; |
| |
| void TestSuiteNoAtExit::Initialize() { |
| // Run TestSuite::Initialize first so that logging is initialized. |
| base::TestSuite::Initialize(); |
| |
| // Run this here instead of main() to ensure an AtExitManager is already |
| // present. |
| media::InitializeMediaLibrary(); |
| } |
| |
| int main(int argc, char** argv) { |
| TestSuiteNoAtExit test_suite(argc, argv); |
| |
| // Always run the perf tests serially, to avoid distorting |
| // perf measurements with randomness resulting from running |
| // in parallel. |
| return base::LaunchUnitTestsSerially( |
| argc, argv, |
| base::BindOnce(&TestSuiteNoAtExit::Run, base::Unretained(&test_suite))); |
| } |