Remove -spirv from new HLSL Sema tests (#6467)

These are semantic verification tests, the `-spir-v` option is not
necessary.
It also breaks our internal test passes for builds that do include
SPIR-V backend.
This commit is contained in:
Helena Kotas 2024-03-26 15:35:14 -07:00 коммит произвёл GitHub
Родитель 63ebbb1430
Коммит e2fb8b33b2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: %dxc -T vs_6_0 -E main -spirv -verify %s
// RUN: %dxc -T vs_6_0 -E main -verify %s
float4 main(float4 input : SV_Position) : POSITION { /* expected-warning{{'POSITION' is a user-defined semantic; did you mean 'SV_Position'?}} */
return input;

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: %dxc -T vs_6_0 -E main -spirv -Wno-dx9-deprecation -verify %s
// RUN: %dxc -T vs_6_0 -E main -Wno-dx9-deprecation -verify %s
float4 main(float4 input : SV_Position) : POSITION { /* expected-no-diagnostics */
return input;