zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 496e90a487ac3204e4c7fb1ec803a5d2f0bd422d (tree)
parent d83a3f1746c81026d1cf0244156513c9b5a2a9f6
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Fri, 20 Sep 2024 13:02:55 +0200

test: Add `riscv32-linux-(none,musl,gnu)` triples for module tests.

Diffstat:
Mtest/tests.zig | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -581,6 +581,30 @@ const test_targets = blk: { .{ .target = .{ + .cpu_arch = .riscv32, + .os_tag = .linux, + .abi = .none, + }, + }, + .{ + .target = .{ + .cpu_arch = .riscv32, + .os_tag = .linux, + .abi = .musl, + }, + .link_libc = true, + }, + .{ + .target = .{ + .cpu_arch = .riscv32, + .os_tag = .linux, + .abi = .gnu, + }, + .link_libc = true, + }, + + .{ + .target = .{ .cpu_arch = .riscv64, .os_tag = .linux, .abi = .none,