commit dfcbca8d2fed33c1fbd47b0b4e98ed0c214fa7e6 (tree)
parent 86e5bbffd757c211c062acef6c244ec94f5db668
Author: LemonBoy <thatlemon@gmail.com>
Date: Wed, 9 Oct 2019 22:49:33 +0200
Add i386/mingw to the test rooster
Diffstat:
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/test/tests.zig b/test/tests.zig
@@ -177,6 +177,17 @@ const test_targets = [_]TestTarget{
.target = Target{
.Cross = CrossTarget{
.os = .windows,
+ .arch = .i386,
+ .abi = .gnu,
+ },
+ },
+ .link_libc = true,
+ },
+
+ TestTarget{
+ .target = Target{
+ .Cross = CrossTarget{
+ .os = .windows,
.arch = .x86_64,
.abi = .gnu,
},