Commit 96affd683a

Andrew Kelley <andrew@ziglang.org>
2019-09-23 01:11:41
enable test coverage for cross compiling windows mingw-w64
closes #3285
1 parent c161ce3
Changed files (1)
test/tests.zig
@@ -154,17 +154,16 @@ const test_targets = [_]TestTarget{
         },
     },
 
-    // TODO https://github.com/ziglang/zig/issues/3285
-    //TestTarget{
-    //    .target = Target{
-    //        .Cross = CrossTarget{
-    //            .os = .windows,
-    //            .arch = .x86_64,
-    //            .abi = .gnu,
-    //        },
-    //    },
-    //    .link_libc = true,
-    //},
+    TestTarget{
+        .target = Target{
+            .Cross = CrossTarget{
+                .os = .windows,
+                .arch = .x86_64,
+                .abi = .gnu,
+            },
+        },
+        .link_libc = true,
+    },
 
     // Do the release tests last because they take a long time
     TestTarget{