OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "gpu/khronos_glcts_support/khronos_glcts_test.h" | 5 #include "gpu/khronos_glcts_support/khronos_glcts_test.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/at_exit.h" | 9 #include "base/at_exit.h" |
10 #include "base/base_paths.h" | 10 #include "base/base_paths.h" |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/file_util.h" | |
13 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/files/file_util.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/path_service.h" | 15 #include "base/path_service.h" |
16 #include "base/process/launch.h" | 16 #include "base/process/launch.h" |
17 #include "base/strings/string_util.h" | 17 #include "base/strings/string_util.h" |
18 #include "gpu/config/gpu_test_config.h" | 18 #include "gpu/config/gpu_test_config.h" |
19 #include "gpu/config/gpu_test_expectations_parser.h" | 19 #include "gpu/config/gpu_test_expectations_parser.h" |
20 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
21 | 21 |
22 base::FilePath g_deqp_log_dir; | 22 base::FilePath g_deqp_log_dir; |
23 | 23 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 if (argc == 2) { | 95 if (argc == 2) { |
96 g_deqp_log_dir = base::FilePath::FromUTF8Unsafe(argv[1]); | 96 g_deqp_log_dir = base::FilePath::FromUTF8Unsafe(argv[1]); |
97 } | 97 } |
98 else { | 98 else { |
99 base::GetTempDir(&g_deqp_log_dir); | 99 base::GetTempDir(&g_deqp_log_dir); |
100 } | 100 } |
101 | 101 |
102 return RUN_ALL_TESTS(); | 102 return RUN_ALL_TESTS(); |
103 } | 103 } |
104 | 104 |
OLD | NEW |