aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-08-31 22:39:22 +0200
committerAndrew Kelley <andrew@ziglang.org>2024-09-19 18:20:21 -0700
commit8c0902b7aec230b8149cc560ebcc3dc0bd7e2328 (patch)
treebbfd9ae569a327e3858efa2d4e321ddd20760e4b /test/tests.zig
parentf8719c419705e7550077f6a699bc9a66888f10b6 (diff)
downloadzig-8c0902b7aec230b8149cc560ebcc3dc0bd7e2328.tar.gz
zig-8c0902b7aec230b8149cc560ebcc3dc0bd7e2328.zip
Revert "tests: skip native CPU std tests on Windows"
This reverts commit 234693bcbba6f55ff6e975ddbedf0fad4dfaa8f1.
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 aac31be230..2fdfb654f4 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -1198,14 +1198,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
test_target.use_llvm == false and mem.eql(u8, options.name, "c-import"))
continue;
- if (target.cpu.arch == .x86_64 and target.os.tag == .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;