OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 #include "PathOpsExtendedTest.h" | 7 #include "PathOpsExtendedTest.h" |
8 #include "PathOpsTestCommon.h" | 8 #include "PathOpsTestCommon.h" |
9 | 9 |
10 #define TEST(name) { name, #name } | 10 #define TEST(name) { name, #name } |
(...skipping 2413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2424 | 2424 |
2425 | 2425 |
2426 static const size_t testCount = SK_ARRAY_COUNT(tests); | 2426 static const size_t testCount = SK_ARRAY_COUNT(tests); |
2427 | 2427 |
2428 static bool runReverse = false; | 2428 static bool runReverse = false; |
2429 | 2429 |
2430 DEF_TEST(PathOpsBuildUse, reporter) { | 2430 DEF_TEST(PathOpsBuildUse, reporter) { |
2431 #if DEBUG_SHOW_TEST_NAME | 2431 #if DEBUG_SHOW_TEST_NAME |
2432 strncpy(DEBUG_FILENAME_STRING, "", DEBUG_FILENAME_STRING_LENGTH); | 2432 strncpy(DEBUG_FILENAME_STRING, "", DEBUG_FILENAME_STRING_LENGTH); |
2433 #endif | 2433 #endif |
2434 RunTestSet(reporter, tests, testCount, firstTest, NULL, stopTest, runReverse
); | 2434 RunTestSet(reporter, tests, testCount, firstTest, nullptr, stopTest, runReve
rse); |
2435 } | 2435 } |
OLD | NEW |