Skip to content

Commit 5e42b08

Browse files
committed
disable failing stack traces tests on windows
See tracking issue #12422
1 parent 486626b commit 5e42b08

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/stack_traces.zig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ const os = std.os;
33
const tests = @import("tests.zig");
44

55
pub fn addCases(cases: *tests.StackTracesContext) void {
6+
if (@import("builtin").os.tag == .windows) {
7+
// https://github.com/ziglang/zig/issues/12422
8+
return;
9+
}
10+
611
cases.addCase(.{
712
.name = "return",
813
.source =

0 commit comments

Comments
 (0)