aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/basic.zig
diff options
context:
space:
mode:
authorDavid Rubin <daviru007@icloud.com>2024-07-05 03:49:09 -0700
committerDavid Rubin <daviru007@icloud.com>2024-07-26 04:05:39 -0700
commit8d30fc45c424ed1aaf9067436a64b0744619c250 (patch)
tree69d6d86af25281f7d999990629305da76ff9913b /test/behavior/basic.zig
parent9766b68c475438e24885dd75cf137d51e72ccfa3 (diff)
downloadzig-8d30fc45c424ed1aaf9067436a64b0744619c250.tar.gz
zig-8d30fc45c424ed1aaf9067436a64b0744619c250.zip
riscv: implement more operators
we can run `std.debug.print` now, with both run-time strings and integers!
Diffstat (limited to 'test/behavior/basic.zig')
-rw-r--r--test/behavior/basic.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig
index 05d6549683..494240c63a 100644
--- a/test/behavior/basic.zig
+++ b/test/behavior/basic.zig
@@ -16,8 +16,6 @@ test "empty function with comments" {
}
test "truncate" {
- if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
-
try expect(testTruncate(0x10fd) == 0xfd);
comptime assert(testTruncate(0x10fd) == 0xfd);
}