2
0
Эх сурвалжийг харах

Do not include TestConfig.h for all HLK build (#4887)

TestConfig.h is not available in HLK test build.
The test library uses _HLK_CONF define to distinguish
between Exec tests-only and HLK-only code.
Helena Kotas 2 жил өмнө
parent
commit
5decc4aa97

+ 3 - 1
include/dxc/Test/HlslTestUtils.h

@@ -28,7 +28,9 @@
 #include "dxc/Support/Unicode.h"
 #include "dxc/DXIL/DxilConstants.h" // DenormMode
 
-#ifndef DEFAULT_TEST_DIR
+#ifdef _HLK_CONF
+#define DEFAULT_TEST_DIR ""
+#else
 #include "dxc/Test/TestConfig.h"
 #endif