authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-09-22 19:11:41-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-09-22 19:11:41-04:00
log96affd683a302402d470f9a41b801f2e42639859
treeb6ba072108fd86d193720fdcf716e944a5314a20
parentc161ce3f7c424274269bda0bf054a04540bc26cf
signature Commit is signed but in an unrecognized format.

enable test coverage for cross compiling windows mingw-w64

closes #3285

1 files changed, 10 insertions(+), 11 deletions(-)

test/tests.zig+10-11
......@@ -154,17 +154,16 @@ const test_targets = [_]TestTarget{
154154 },
155155 },
156156
157 // TODO https://github.com/ziglang/zig/issues/3285
158 //TestTarget{
159 // .target = Target{
160 // .Cross = CrossTarget{
161 // .os = .windows,
162 // .arch = .x86_64,
163 // .abi = .gnu,
164 // },
165 // },
166 // .link_libc = true,
167 //},
157 TestTarget{
158 .target = Target{
159 .Cross = CrossTarget{
160 .os = .windows,
161 .arch = .x86_64,
162 .abi = .gnu,
163 },
164 },
165 .link_libc = true,
166 },
168167
169168 // Do the release tests last because they take a long time
170169 TestTarget{