Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Unified Diff: syzygy/integration_tests/integration_tests_dll.cc

Issue 2946083002: Moved source files into a list variable and add a custom build target to compile the integration te… (Closed)
Patch Set: Split the test table into Asan and non-Asan tests. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(); \
}

Powered by Google App Engine
This is Rietveld 408576698