aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-04-16 16:49:22 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2023-04-16 17:07:07 -0400
commit780f654e1907f8d6d194ca41e49fce09fd7066c5 (patch)
tree5c2de650b0037319e277f67343857ad5986a5536 /test/tests.zig
parentc1a2da6b78d27d572cee38bb8cde2e46c842ffc0 (diff)
downloadzig-780f654e1907f8d6d194ca41e49fce09fd7066c5.tar.gz
zig-780f654e1907f8d6d194ca41e49fce09fd7066c5.zip
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
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/tests.zig b/test/tests.zig
index cb5e848200..207b3db9f8 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -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