diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2020-05-04 13:10:35 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-04 13:10:35 -0700 |
| commit | 2dcfce40a6ec9e2147d89823816730b3ffccc7f7 (patch) | |
| tree | e25d4a8e8d4c53d5ede5376543e6227fe637d707 /tests | |
| parent | f59978893fed309ff19bacd787398c4bab4aa7c8 (diff) | |
Disable a test that was breaking on CI (#1338)
The CI system doesn't have a new enough dxc to support 16-bit load/store from byte-addressed buffers, so I am disabling the test for now.
A better long-term fix is to put an appropriate version of dxc into `slang-binaries` and use that for our CI tests.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/hlsl-intrinsic/byte-address-buffer/byte-address-16bit.slang | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/hlsl-intrinsic/byte-address-buffer/byte-address-16bit.slang b/tests/hlsl-intrinsic/byte-address-buffer/byte-address-16bit.slang index 840c72676..61e62214d 100644 --- a/tests/hlsl-intrinsic/byte-address-buffer/byte-address-16bit.slang +++ b/tests/hlsl-intrinsic/byte-address-buffer/byte-address-16bit.slang @@ -5,7 +5,12 @@ // that support it. //TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -cpu -//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -dx12 -use-dxil -profile cs_6_2 -render-features half + +// Note: disabled on D3D12 because some of the CI services don't have +// a recent enough build of dxc to support generic load/store. +// +//DISABLE_TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -dx12 -use-dxil -profile cs_6_2 -render-features half + //TEST(compute, vulkan):COMPARE_COMPUTE_EX:-slang -vk -compute -profile cs_6_2 -render-features half //TEST(compute):COMPARE_COMPUTE_EX:-slang -cuda -compute |
