From 4296ed9c4232a4d3a7d50759420b3ebed1e639e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Wed, 7 Jan 2026 04:46:53 +0100 Subject: [PATCH] test: skip self_exe_symlink on OpenBSD realPath is unsupported. --- test/standalone/self_exe_symlink/build.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/standalone/self_exe_symlink/build.zig b/test/standalone/self_exe_symlink/build.zig index 137848b9535fe4f361733f6dba443b58a5a7bf05..061dd69f34623dc05f531b97905c60bb8498ae0e 100644 --- a/test/standalone/self_exe_symlink/build.zig +++ b/test/standalone/self_exe_symlink/build.zig @@ -9,6 +9,8 @@ pub fn build(b: *std.Build) void { const optimize: std.builtin.OptimizeMode = .Debug; const target = b.graph.host; + if (target.result.os.tag == .openbsd) return; // realpath not supported + const main = b.addExecutable(.{ .name = "main", .root_module = b.createModule(.{ -- 2.54.0