aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-11-03 14:25:30 +0100
committerGitHub <noreply@github.com>2024-11-03 14:25:30 +0100
commit2f003f39b28176f08de51271eb66b5f3a54c7aae (patch)
tree8aa5be07f5749b49a2103bda726771473f29bbbd /test/behavior/struct.zig
parent947b7195bf4628cc4658fec9e2f5b30a1318132b (diff)
parent621487d5abcf9006b3e38f96c49a533c1835e7a3 (diff)
downloadzig-2f003f39b28176f08de51271eb66b5f3a54c7aae.tar.gz
zig-2f003f39b28176f08de51271eb66b5f3a54c7aae.zip
Merge pull request #21599 from alexrp/thumb-porting
Diffstat (limited to 'test/behavior/struct.zig')
-rw-r--r--test/behavior/struct.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index 283c8dbc4a..b45fa171cb 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -419,7 +419,7 @@ test "packed struct 24bits" {
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.cpu.arch == .wasm32) return error.SkipZigTest; // TODO
- if (comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest; // TODO
+ if (comptime builtin.cpu.arch.isArm()) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
@@ -818,7 +818,7 @@ test "non-packed struct with u128 entry in union" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_c and comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest;
+ if (builtin.zig_backend == .stage2_c and comptime builtin.cpu.arch.isArm()) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
const U = union(enum) {
@@ -941,7 +941,7 @@ test "tuple assigned to variable" {
test "comptime struct field" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
- if (comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest; // TODO
+ if (comptime builtin.cpu.arch.isArm()) return error.SkipZigTest; // TODO
const T = struct {
a: i32,