Chromium Code Reviews| Index: syzygy/integration_tests/integration_tests_dll.h |
| diff --git a/syzygy/integration_tests/integration_tests_dll.h b/syzygy/integration_tests/integration_tests_dll.h |
| index 8c448381e8ebdf5b083986a193e11dac84d1a591..6b6bc0855e603e31f454d11368217c570dce5a0b 100644 |
| --- a/syzygy/integration_tests/integration_tests_dll.h |
| +++ b/syzygy/integration_tests/integration_tests_dll.h |
| @@ -192,11 +192,13 @@ namespace testing { |
| decl(kProfileGetMyRVA, testing::GetMyRVA) |
| // Only run the Asan tests for the Clang builds. |
| +// The order of inclusion matters because it affects the numbers assigned to |
|
Sébastien Marchand
2017/07/21 15:14:26
s/numbers/IDs/
|
| +// test cases. First include Asan tests then non Asan tests. |
| #ifdef __clang__ |
| #define END_TO_END_TEST_ID_TABLE(decl) END_TO_END_ASAN_TESTS(decl) |
| #else |
| #define END_TO_END_TEST_ID_TABLE(decl) \ |
| - END_TO_END_NON_ASAN_TESTS(decl) END_TO_END_ASAN_TESTS(decl) |
| + END_TO_END_ASAN_TESTS(decl) END_TO_END_NON_ASAN_TESTS(decl) |
| #endif // __clang__ |
| // This enumeration contains an unique id for each end to end test. It is used |