| author | |
| committer | |
| log | b3432c2796979c4a0e137153414df61282b5626a |
| tree | b6d34276e94fe41075d0da418891bd6aeb5d61f6 |
| parent | b2d2b441b2cbf15a01ca386b0df5c2103c1be24b |
| signature |
2 files changed, 8 insertions(+), 2 deletions(-)
test/stack_traces.zig+2| ... | @@ -803,6 +803,7 @@ pub fn addCases(cases: *tests.StackTracesContext) void { | ... | @@ -803,6 +803,7 @@ pub fn addCases(cases: *tests.StackTracesContext) void { |
| 803 | .s390x, | 803 | .s390x, |
| 804 | }, | 804 | }, |
| 805 | .exclude_os = &.{ | 805 | .exclude_os = &.{ |
| 806 | .freebsd, | ||
| 806 | .openbsd, // integer overflow | 807 | .openbsd, // integer overflow |
| 807 | .windows, // TODO intermittent failures | 808 | .windows, // TODO intermittent failures |
| 808 | }, | 809 | }, |
| ... | @@ -847,6 +848,7 @@ pub fn addCases(cases: *tests.StackTracesContext) void { | ... | @@ -847,6 +848,7 @@ pub fn addCases(cases: *tests.StackTracesContext) void { |
| 847 | }, | 848 | }, |
| 848 | .ReleaseSafe = .{ | 849 | .ReleaseSafe = .{ |
| 849 | .exclude_os = &.{ | 850 | .exclude_os = &.{ |
| 851 | .freebsd, | ||
| 850 | .windows, // TODO | 852 | .windows, // TODO |
| 851 | .linux, // defeated by aggressive inlining | 853 | .linux, // defeated by aggressive inlining |
| 852 | .macos, // Broken in LLVM 20. | 854 | .macos, // Broken in LLVM 20. |
test/standalone/stack_iterator/build.zig+6-2| ... | @@ -61,8 +61,12 @@ pub fn build(b: *std.Build) void { | ... | @@ -61,8 +61,12 @@ pub fn build(b: *std.Build) void { |
| 61 | .use_llvm = true, | 61 | .use_llvm = true, |
| 62 | }); | 62 | }); |
| 63 | 63 | ||
| 64 | const run_cmd = b.addRunArtifact(exe); | 64 | if (builtin.os.tag != .freebsd) { |
| 65 | test_step.dependOn(&run_cmd.step); | 65 | const run_cmd = b.addRunArtifact(exe); |
| 66 | test_step.dependOn(&run_cmd.step); | ||
| 67 | } else { | ||
| 68 | test_step.dependOn(&exe.step); | ||
| 69 | } | ||
| 66 | } | 70 | } |
| 67 | 71 | ||
| 68 | // https://github.com/ziglang/zig/issues/24522 | 72 | // https://github.com/ziglang/zig/issues/24522 |