authorgravatar for jacobly@ziglang.orgJacob Young <jacobly@ziglang.org> 2023-04-16 16:49:22-04:00
committergravatar for jacobly@ziglang.orgJacob Young <jacobly@ziglang.org> 2023-04-16 17:07:07-04:00
log780f654e1907f8d6d194ca41e49fce09fd7066c5
tree5c2de650b0037319e277f67343857ad5986a5536
parentc1a2da6b78d27d572cee38bb8cde2e46c842ffc0

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

2 files changed, 1 insertions(+), 8 deletions(-)

test/behavior/bugs/12776.zig+1
...@@ -32,6 +32,7 @@ test {...@@ -32,6 +32,7 @@ test {
32 if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;32 if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
33 if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;33 if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
34 if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest;34 if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest;
35 if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
3536
36 var ram = try RAM.new();37 var ram = try RAM.new();
37 var cpu = try CPU.new(&ram);38 var cpu = try CPU.new(&ram);
test/tests.zig-8
...@@ -942,14 +942,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {...@@ -942,14 +942,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
942 if (test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt"))942 if (test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt"))
943 continue;943 continue;
944944
945 // TODO get the x86_64 self-hosted backend tests passing on Windows
946 if (test_target.target.getCpuArch() == .x86_64 and
947 test_target.target.getOsTag() == .windows and
948 test_target.use_llvm == false)
949 {
950 continue;
951 }
952
953 // TODO get compiler-rt tests passing for wasm32-wasi945 // TODO get compiler-rt tests passing for wasm32-wasi
954 // currently causes "LLVM ERROR: Unable to expand fixed point multiplication."946 // currently causes "LLVM ERROR: Unable to expand fixed point multiplication."
955 if (test_target.target.getCpuArch() == .wasm32 and947 if (test_target.target.getCpuArch() == .wasm32 and