diff options
| author | Yong He <yonghe@outlook.com> | 2024-03-23 10:54:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-23 10:54:01 -0700 |
| commit | a23adc221b1ea26db3f3313226b629eb9e308b0f (patch) | |
| tree | 6f758d64201f2c606dc3e61394899bff4fa72f51 /tests/hlsl | |
| parent | 9b0df14cdf9d9ea8857b5b9d59505b18020f8414 (diff) | |
Make `-no-mangle` option work, add `-no-hlsl-binding`. (#3817)
Diffstat (limited to 'tests/hlsl')
| -rw-r--r-- | tests/hlsl/simple/allow-uav-conditional.hlsl | 4 | ||||
| -rw-r--r-- | tests/hlsl/simple/compute-numthreads.hlsl | 2 | ||||
| -rw-r--r-- | tests/hlsl/simple/implicit_conversion.hlsl | 2 | ||||
| -rw-r--r-- | tests/hlsl/simple/literal-typing.hlsl | 2 | ||||
| -rw-r--r-- | tests/hlsl/simple/rw-texture.hlsl | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/tests/hlsl/simple/allow-uav-conditional.hlsl b/tests/hlsl/simple/allow-uav-conditional.hlsl index b9780e97d..c75e42280 100644 --- a/tests/hlsl/simple/allow-uav-conditional.hlsl +++ b/tests/hlsl/simple/allow-uav-conditional.hlsl @@ -1,5 +1,5 @@ -//TEST:COMPARE_HLSL:-no-mangle -profile cs_5_0 -//TEST:COMPARE_HLSL:-no-mangle -profile cs_5_0 -verify-debug-serial-ir +//TEST:COMPARE_HLSL: -profile cs_5_0 +//TEST:COMPARE_HLSL: -profile cs_5_0 -verify-debug-serial-ir // Check output for `[allow_uav_conditional]` diff --git a/tests/hlsl/simple/compute-numthreads.hlsl b/tests/hlsl/simple/compute-numthreads.hlsl index 34d9bfd4f..3c0d8e57b 100644 --- a/tests/hlsl/simple/compute-numthreads.hlsl +++ b/tests/hlsl/simple/compute-numthreads.hlsl @@ -1,4 +1,4 @@ -//TEST:COMPARE_HLSL:-no-mangle -profile cs_5_0 -entry main +//TEST:COMPARE_HLSL: -profile cs_5_0 -entry main // Confirm that we properly pass along the `numthreads` attribute on an entry point. diff --git a/tests/hlsl/simple/implicit_conversion.hlsl b/tests/hlsl/simple/implicit_conversion.hlsl index 2a3700e62..36738ea45 100644 --- a/tests/hlsl/simple/implicit_conversion.hlsl +++ b/tests/hlsl/simple/implicit_conversion.hlsl @@ -1,4 +1,4 @@ -//TEST_DISABLED:COMPARE_HLSL:-no-mangle -profile cs_5_0 -entry main +//TEST_DISABLED:COMPARE_HLSL: -profile cs_5_0 -entry main // Test various cases of implicit type conversion and preference // for overload resolution. diff --git a/tests/hlsl/simple/literal-typing.hlsl b/tests/hlsl/simple/literal-typing.hlsl index 6c003eb21..51e58201b 100644 --- a/tests/hlsl/simple/literal-typing.hlsl +++ b/tests/hlsl/simple/literal-typing.hlsl @@ -1,4 +1,4 @@ -//TEST:COMPARE_HLSL:-no-mangle -profile cs_5_0 -entry main +//TEST:COMPARE_HLSL: -profile cs_5_0 -entry main // Confirm that we get the typing of literal suffixes correct diff --git a/tests/hlsl/simple/rw-texture.hlsl b/tests/hlsl/simple/rw-texture.hlsl index 114d9e126..af2f5a183 100644 --- a/tests/hlsl/simple/rw-texture.hlsl +++ b/tests/hlsl/simple/rw-texture.hlsl @@ -1,6 +1,6 @@ // rw-texture.hlsl -//TEST:COMPARE_HLSL:-no-mangle -profile ps_5_0 -entry main +//TEST:COMPARE_HLSL: -profile ps_5_0 -entry main // Ensure that we implement the `Load` operations on // `RWTexture*` types with the correct signature. |
