Browse Source

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 years ago
parent
commit
5decc4aa97
1 changed files with 3 additions and 1 deletions
  1. 3 1
      include/dxc/Test/HlslTestUtils.h

+ 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