blob: 3c8b9af7f1611fd015db0f1b72a4d47a8aeb2317 [file] [log] [blame]
// 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 "cobalt/media/base/media.h"
class TestSuiteNoAtExit : public base::TestSuite {
public:
TestSuiteNoAtExit(int argc, char** argv) : TestSuite(argc, argv) {}
~TestSuiteNoAtExit() override {}
protected:
void Initialize() override;
};
void TestSuiteNoAtExit::Initialize() {
// Run TestSuite::Initialize first so that logging is initialized.
base::AtExitManager exit_manager;
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::Bind(&TestSuiteNoAtExit::Run, base::Unretained(&test_suite)));
}