summaryrefslogtreecommitdiff
path: root/chromium/gpu/angle_deqp_tests_main.cc
blob: 7567b6a7eb26306cd92313696deea20948398861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2015 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/command_line.h"
#include "base/task/single_thread_task_executor.h"
#include "base/test/launcher/unit_test_launcher.h"
#include "base/test/test_suite.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace {

int RunHelper(base::TestSuite* test_suite) {
  base::SingleThreadTaskExecutor task_executor;
  return test_suite->Run();
}

}  // namespace

// Defined in angle_deqp_gtest.cpp. Declared here so we don't need to make a
// header that we import in Chromium.
namespace angle {
void InitTestHarness(int* argc, char** argv);
}

int main(int argc, char** argv) {
  // base::CommandLine::Init must be called before angle::InitTestHarness,
  // because angle::InitTestHarness deletes ANGLE-specific arguments from argv.
  // But, on Linux, tests are run in ChildGTestProcess, which inherits its
  // command line from the one initialized in base::CommandLine::Init.
  // In this order, ChildGTestProcess inherits all the ANGLE-specific
  // arguments that it requires.
  base::CommandLine::Init(argc, argv);
  angle::InitTestHarness(&argc, argv);
  base::TestSuite test_suite(argc, argv);

  // The process priority is lowered by the constructor of tcu::ANGLEPlatform().
  test_suite.DisableCheckForProcessPriority();

  int rt = base::LaunchUnitTestsSerially(
      argc, argv, base::BindOnce(&RunHelper, base::Unretained(&test_suite)));
  return rt;
}