Upload upstream chromium 73.0.3683.0
[platform/framework/web/chromium-efl.git] / gpu / dawn_unittests_main.cc
1 // Copyright 2018 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/bind.h"
6 #include "base/command_line.h"
7 #include "base/message_loop/message_loop.h"
8 #include "base/test/launcher/unit_test_launcher.h"
9 #include "base/test/test_suite.h"
10 #include "testing/gmock/include/gmock/gmock.h"
11
12 namespace {
13
14 int RunHelper(base::TestSuite* test_suite) {
15   base::MessageLoopForIO message_loop;
16   return test_suite->Run();
17 }
18
19 }  // namespace
20
21 int main(int argc, char** argv) {
22   base::CommandLine::Init(argc, argv);
23   testing::InitGoogleMock(&argc, argv);
24   base::TestSuite test_suite(argc, argv);
25   int rt = base::LaunchUnitTestsSerially(
26       argc, argv, base::BindOnce(&RunHelper, base::Unretained(&test_suite)));
27   return rt;
28 }