zig

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

commit b739fec841ced5a6b41f36847945f638254b33bb (tree)
parent 1f2e3b39ae8ddd4ae7a969daa8c56949de81295e
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Mon, 30 Jun 2025 15:45:17 +0200

test: Disable stack_iterator test on riscv64-linux

https://github.com/ziglang/zig/issues/24310

Diffstat:
Mtest/standalone/stack_iterator/build.zig | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/test/standalone/stack_iterator/build.zig b/test/standalone/stack_iterator/build.zig @@ -8,6 +8,11 @@ pub fn build(b: *std.Build) void { const target = b.standardTargetOptions(.{}); const optimize = b.standardOptimizeOption(.{}); + if (target.result.cpu.arch.isRISCV() and target.result.os.tag == .linux) { + // https://github.com/ziglang/zig/issues/24310 + return; + } + // Unwinding with a frame pointer // // getcontext version: zig std