diff options
| author | David Rubin <daviru007@icloud.com> | 2024-04-16 16:39:31 -0700 |
|---|---|---|
| committer | David Rubin <daviru007@icloud.com> | 2024-05-11 02:17:24 -0700 |
| commit | a30af172e8dc360cb0a71a5c4dfd904120555715 (patch) | |
| tree | e43bb564776492b6fa18187b4a379a82be5cdbb1 /test/behavior/array.zig | |
| parent | a615fbc1f8330e455d02fdda5c6de257b0cde7f4 (diff) | |
| download | zig-a30af172e8dc360cb0a71a5c4dfd904120555715.tar.gz zig-a30af172e8dc360cb0a71a5c4dfd904120555715.zip | |
riscv: math progress
Diffstat (limited to 'test/behavior/array.zig')
| -rw-r--r-- | test/behavior/array.zig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig index 2cb7cfee4a..1759e5c696 100644 --- a/test/behavior/array.zig +++ b/test/behavior/array.zig @@ -203,7 +203,6 @@ test "nested arrays of strings" { if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO - if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; const array_of_strings = [_][]const u8{ "hello", "this", "is", "my", "thing" }; for (array_of_strings, 0..) |s, i| { @@ -329,7 +328,6 @@ test "read/write through global variable array of struct fields initialized via if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; 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_riscv64) return error.SkipZigTest; const S = struct { fn doTheTest() !void { @@ -738,8 +736,6 @@ test "pointer to array has ptr field" { } test "discarded array init preserves result location" { - if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; - const S = struct { fn f(p: *u32) u16 { p.* += 1; |
