瀏覽代碼

Enable ISHELPERLANE_PLACEHOLDER in test until implementations catch up. (#3388)

* Enable ISHELPERLANE_PLACEHOLDER in test until implementations catch up.
* HelperLaneTestWave to Pri2 to avoid warp problems in default run for now
Tex Riddell 4 年之前
父節點
當前提交
318f0ea52c
共有 1 個文件被更改,包括 8 次插入1 次删除
  1. 8 1
      tools/clang/unittests/HLSL/ExecutionTest.cpp

+ 8 - 1
tools/clang/unittests/HLSL/ExecutionTest.cpp

@@ -10,6 +10,11 @@
 //                                                                           //
 ///////////////////////////////////////////////////////////////////////////////
 
+////////////////////////////////////////////////////////////
+// Define this until fallback implementation is complete.
+#define ISHELPERLANE_PLACEHOLDER
+////////////////////////////////////////////////////////////
+
 #include <algorithm>
 #include <memory>
 #include <array>
@@ -306,7 +311,9 @@ public:
   TEST_METHOD(AtomicsShared64Test);
   TEST_METHOD(AtomicsFloatTest);
   TEST_METHOD(HelperLaneTest);
-  TEST_METHOD(HelperLaneTestWave);
+  BEGIN_TEST_METHOD(HelperLaneTestWave)
+    TEST_METHOD_PROPERTY(L"Priority", L"2") // Remove this line once warp handles this
+  END_TEST_METHOD(HelperLaneTestWave)
   TEST_METHOD(SignatureResourcesTest)
   TEST_METHOD(DynamicResourcesTest)
   TEST_METHOD(QuadReadTest)