mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
disable failing stack traces tests on windows
See tracking issue #12422
This commit is contained in:
parent
486626beb7
commit
5e42b0821a
@ -3,6 +3,11 @@ const os = std.os;
|
||||
const tests = @import("tests.zig");
|
||||
|
||||
pub fn addCases(cases: *tests.StackTracesContext) void {
|
||||
if (@import("builtin").os.tag == .windows) {
|
||||
// https://github.com/ziglang/zig/issues/12422
|
||||
return;
|
||||
}
|
||||
|
||||
cases.addCase(.{
|
||||
.name = "return",
|
||||
.source =
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user