aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/slice.zig
diff options
context:
space:
mode:
authorDavid Rubin <daviru007@icloud.com>2024-04-16 16:39:31 -0700
committerDavid Rubin <daviru007@icloud.com>2024-05-11 02:17:24 -0700
commita30af172e8dc360cb0a71a5c4dfd904120555715 (patch)
treee43bb564776492b6fa18187b4a379a82be5cdbb1 /test/behavior/slice.zig
parenta615fbc1f8330e455d02fdda5c6de257b0cde7f4 (diff)
downloadzig-a30af172e8dc360cb0a71a5c4dfd904120555715.tar.gz
zig-a30af172e8dc360cb0a71a5c4dfd904120555715.zip
riscv: math progress
Diffstat (limited to 'test/behavior/slice.zig')
-rw-r--r--test/behavior/slice.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/slice.zig b/test/behavior/slice.zig
index 8453ffc451..1bcfc42dd5 100644
--- a/test/behavior/slice.zig
+++ b/test/behavior/slice.zig
@@ -176,7 +176,6 @@ test "comptime pointer cast array and then slice" {
test "slicing zero length array" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
const s1 = ""[0..];
const s2 = ([_]u32{})[0..];
@@ -738,7 +737,6 @@ test "array mult of slice gives ptr to array" {
test "slice bounds in comptime concatenation" {
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
const bs = comptime blk: {
const b = "........1........";