Skip to content

Commit aa55a3c

Browse files
committed
compiletest: extend vulkan ignores to include 1.3 and 1.4
1 parent 4013a64 commit aa55a3c

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

tests/compiletests/ui/dis/asm_op_decorate.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
// and the pre-`vulkan1.2` output, but per-revisions `{only,ignore}-*` directives
1313
// are not supported in `compiletest-rs`.
1414
// ignore-vulkan1.2
15+
// ignore-vulkan1.3
16+
// ignore-vulkan1.4
1517

1618
use core::arch::asm;
1719
use spirv_std::spirv;

tests/compiletests/ui/dis/non-writable-storage_buffer.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
// and the pre-`vulkan1.2` output, but per-revisions `{only,ignore}-*` directives
1414
// are not supported in `compiletest-rs`.
1515
// ignore-vulkan1.2
16+
// ignore-vulkan1.3
17+
// ignore-vulkan1.4
1618

1719
use spirv_std::spirv;
1820

tests/compiletests/ui/image/gather.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ pub fn main(
2323
target_env = "vulkan1.0",
2424
target_env = "vulkan1.1",
2525
target_env = "vulkan1.1spv1.4",
26-
target_env = "vulkan1.2"
26+
target_env = "vulkan1.2",
27+
target_env = "vulkan1.3",
28+
target_env = "vulkan1.4"
2729
)))]
2830
#[spirv(fragment)]
2931
pub fn main_rect(

tests/compiletests/ui/image/sample_depth_reference/sample_gradient.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ pub fn main(
2727
target_env = "vulkan1.0",
2828
target_env = "vulkan1.1",
2929
target_env = "vulkan1.1spv1.4",
30-
target_env = "vulkan1.2"
30+
target_env = "vulkan1.2",
31+
target_env = "vulkan1.3",
32+
target_env = "vulkan1.4"
3133
)))]
3234
#[spirv(fragment)]
3335
pub fn main_cubemap(

tests/compiletests/ui/image/sample_depth_reference/sample_lod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ pub fn main(
2525
target_env = "vulkan1.0",
2626
target_env = "vulkan1.1",
2727
target_env = "vulkan1.1spv1.4",
28-
target_env = "vulkan1.2"
28+
target_env = "vulkan1.2",
29+
target_env = "vulkan1.3",
30+
target_env = "vulkan1.4"
2931
)))]
3032
#[spirv(fragment)]
3133
pub fn main_cubemap(

0 commit comments

Comments
 (0)