Skip to content

Commit

Permalink
[HLSL][SPIR-V] Fix clang driver lang target test (#70330)
Browse files Browse the repository at this point in the history
This test has been failing since the SPIR-V backend started failing
explicitly on unsupported shader types. Switched this test to a compute
shader since it is currently the only type supported.
  • Loading branch information
sudonatalie committed Oct 30, 2023
1 parent 56dab2c commit f89b859
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clang/test/Driver/hlsl-lang-targets-spirv.hlsl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

// Supported targets
//
// RUN: %clang -target dxil-unknown-shadermodel6.2-pixel %s -S -o /dev/null 2>&1 | FileCheck --check-prefix=CHECK-VALID %s
// RUN: %clang -target spirv-unknown-shadermodel6.2-library %s -S -o /dev/null 2>&1 | FileCheck --check-prefix=CHECK-VALID %s
// RUN: %clang -target dxil-unknown-shadermodel6.2-compute %s -S -o /dev/null 2>&1 | FileCheck --allow-empty --check-prefix=CHECK-VALID %s
// RUN: %clang -target spirv-unknown-shadermodel6.2-compute %s -S -o /dev/null 2>&1 | FileCheck --allow-empty --check-prefix=CHECK-VALID %s

// Empty shader model
//
Expand All @@ -27,5 +27,5 @@
// CHECK-NO-ENV: error: shader stage is required in target '{{.*}}' for HLSL code generation
// CHECK-BAD-ENV: error: shader stage '{{.*}}' in target '{{.*}}' is invalid for HLSL code generation

[shader("pixel")]
[shader("compute"), numthreads(1,1,1)]
void main() {}

0 comments on commit f89b859

Please sign in to comment.