mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +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");
|
const tests = @import("tests.zig");
|
||||||
|
|
||||||
pub fn addCases(cases: *tests.StackTracesContext) void {
|
pub fn addCases(cases: *tests.StackTracesContext) void {
|
||||||
|
if (@import("builtin").os.tag == .windows) {
|
||||||
|
// https://github.com/ziglang/zig/issues/12422
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
cases.addCase(.{
|
cases.addCase(.{
|
||||||
.name = "return",
|
.name = "return",
|
||||||
.source =
|
.source =
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue