| author | |
| committer | |
| log | a569c7d66433c46efe8a36ee5191b033c98faeab |
| tree | c4ba1b6b128d7a1a01ccebe5933eea17aa36f4c3 |
| parent | b8f2fec0f2d66427c8f947979fee8173099c690c |
| signature |
2 files changed, 8 insertions(+), 2 deletions(-)
test/stack_traces.zig+2| ... | ... | @@ -793,6 +793,7 @@ pub fn addCases(cases: *tests.StackTracesContext) void { |
| 793 | 793 | , |
| 794 | 794 | .Debug = .{ |
| 795 | 795 | .exclude_os = &.{ |
| 796 | .freebsd, | |
| 796 | 797 | .openbsd, // integer overflow |
| 797 | 798 | .windows, // TODO intermittent failures |
| 798 | 799 | }, |
| ... | ... | @@ -837,6 +838,7 @@ pub fn addCases(cases: *tests.StackTracesContext) void { |
| 837 | 838 | }, |
| 838 | 839 | .ReleaseSafe = .{ |
| 839 | 840 | .exclude_os = &.{ |
| 841 | .freebsd, | |
| 840 | 842 | .windows, // TODO |
| 841 | 843 | .linux, // defeated by aggressive inlining |
| 842 | 844 | .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 | 61 | .use_llvm = true, |
| 62 | 62 | }); |
| 63 | 63 | |
| 64 | const run_cmd = b.addRunArtifact(exe); | |
| 65 | test_step.dependOn(&run_cmd.step); | |
| 64 | if (builtin.os.tag != .freebsd) { | |
| 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 | 72 | // https://github.com/ziglang/zig/issues/24522 |