enable test coverage for cross compiling windows mingw-w64

closes #3285
This commit is contained in:
Andrew Kelley 2019-09-22 19:11:41 -04:00
parent c161ce3f7c
commit 96affd683a
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9

View File

@ -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{