mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
disable failing stack traces tests on windows
See tracking issue #12422
This commit is contained in:
parent
486626beb7
commit
5e42b0821a
1 changed files with 5 additions and 0 deletions
|
|
@ -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…
Add table
Reference in a new issue