mirror of
https://github.com/ziglang/zig.git
synced 2026-01-21 06:45:24 +00:00
behavior: disable flaky test on x86_64
Also reenable stage2_x86_64 windows behavior tests in case it is failing for the same reason. Closes #15324
This commit is contained in:
parent
c1a2da6b78
commit
780f654e19
@ -32,6 +32,7 @@ test {
|
||||
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
|
||||
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
|
||||
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest;
|
||||
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
|
||||
|
||||
var ram = try RAM.new();
|
||||
var cpu = try CPU.new(&ram);
|
||||
|
||||
@ -942,14 +942,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
|
||||
if (test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt"))
|
||||
continue;
|
||||
|
||||
// TODO get the x86_64 self-hosted backend tests passing on Windows
|
||||
if (test_target.target.getCpuArch() == .x86_64 and
|
||||
test_target.target.getOsTag() == .windows and
|
||||
test_target.use_llvm == false)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// TODO get compiler-rt tests passing for wasm32-wasi
|
||||
// currently causes "LLVM ERROR: Unable to expand fixed point multiplication."
|
||||
if (test_target.target.getCpuArch() == .wasm32 and
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user