mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
parent
5ea973dc39
commit
234693bcbb
@ -1095,6 +1095,16 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
|
||||
test_target.use_llvm == false and mem.eql(u8, options.name, "std"))
|
||||
continue;
|
||||
|
||||
if (test_target.target.getCpuArch() == .x86_64 and
|
||||
test_target.target.getOsTag() == .windows and
|
||||
test_target.target.cpu_arch == null and
|
||||
test_target.optimize_mode != .Debug and
|
||||
mem.eql(u8, options.name, "std"))
|
||||
{
|
||||
// https://github.com/ziglang/zig/issues/17902
|
||||
continue;
|
||||
}
|
||||
|
||||
const want_this_mode = for (options.optimize_modes) |m| {
|
||||
if (m == test_target.optimize_mode) break true;
|
||||
} else false;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user