aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/pointers.zig
diff options
context:
space:
mode:
authorDavid Rubin <daviru007@icloud.com>2024-05-10 23:19:23 -0700
committerDavid Rubin <daviru007@icloud.com>2024-05-11 02:17:24 -0700
commit75372f12ef1301118eed33e429f7498e76836cb3 (patch)
tree13dfffe3e40acadf065e1ae936c36865130f75ba /test/behavior/pointers.zig
parent1dfdc21c31a027a34213a2e1f27433d4e609d634 (diff)
downloadzig-75372f12ef1301118eed33e429f7498e76836cb3.tar.gz
zig-75372f12ef1301118eed33e429f7498e76836cb3.zip
riscv: update behaviour tests again
Diffstat (limited to 'test/behavior/pointers.zig')
-rw-r--r--test/behavior/pointers.zig4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/behavior/pointers.zig b/test/behavior/pointers.zig
index 35c32041ff..ffeeca3986 100644
--- a/test/behavior/pointers.zig
+++ b/test/behavior/pointers.zig
@@ -640,8 +640,6 @@ test "cast pointers with zero sized elements" {
}
test "comptime pointer equality through distinct fields with well-defined layout" {
- if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
-
const A = extern struct {
x: u32,
z: u16,
@@ -666,8 +664,6 @@ test "comptime pointer equality through distinct fields with well-defined layout
}
test "comptime pointer equality through distinct elements with well-defined layout" {
- if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
-
const buf: [2]u32 = .{ 123, 456 };
const ptr: *const [2]u32 = &buf;