| Index: syzygy/integration_tests/integration_tests_dll.cc
|
| diff --git a/syzygy/integration_tests/integration_tests_dll.cc b/syzygy/integration_tests/integration_tests_dll.cc
|
| index cf76ac6e2af4f4c0cc7859ea04a617c0197870f5..58096e1991f47b7111fffab282337771bb6c989c 100644
|
| --- a/syzygy/integration_tests/integration_tests_dll.cc
|
| +++ b/syzygy/integration_tests/integration_tests_dll.cc
|
| @@ -20,11 +20,13 @@
|
| #include "syzygy/integration_tests/asan_check_tests.h"
|
| #include "syzygy/integration_tests/asan_interceptors_tests.h"
|
| #include "syzygy/integration_tests/asan_page_protection_tests.h"
|
| +#ifndef __clang__
|
| #include "syzygy/integration_tests/bb_entry_tests.h"
|
| #include "syzygy/integration_tests/behavior_tests.h"
|
| #include "syzygy/integration_tests/coverage_tests.h"
|
| #include "syzygy/integration_tests/deferred_free_tests.h"
|
| #include "syzygy/integration_tests/profile_tests.h"
|
| +#endif // __clang__
|
|
|
| BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved) {
|
| return TRUE;
|
| @@ -32,7 +34,7 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved) {
|
|
|
| unsigned int CALLBACK EndToEndTest(testing::EndToEndTestId test) {
|
| switch (test) {
|
| -#define DECLARE_END_TO_END_SWITCH_TABLE(enum_name, function_to_call, supported_compiler) \
|
| +#define DECLARE_END_TO_END_SWITCH_TABLE(enum_name, function_to_call) \
|
| case testing::enum_name: { \
|
| return function_to_call(); \
|
| }
|
|
|