From a6275ad16f7441725c87429406452be69e480934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 26 May 2026 15:40:22 +0200 Subject: [PATCH] test: add riscv32-netbsd-none and riscv64-netbsd-none to module test matrix --- test/tests.zig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/tests.zig b/test/tests.zig index be7bab6a4a59b2d932bcc8ad289c16ddbe12b1a1..2afba075f7c254265aa6eb55362ab9bf39ba40a0 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -1362,6 +1362,24 @@ const module_test_targets = blk: { .link_libc = true, }, + .{ + .target = .{ + .cpu_arch = .riscv32, + .os_tag = .netbsd, + .abi = .none, + }, + .link_libc = true, + }, + + .{ + .target = .{ + .cpu_arch = .riscv64, + .os_tag = .netbsd, + .abi = .none, + }, + .link_libc = true, + }, + .{ .target = .{ .cpu_arch = .x86, -- 2.54.0