浏览代码

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 年之前
父节点
当前提交
5decc4aa97
共有 1 个文件被更改,包括 3 次插入1 次删除
  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