aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2019-10-09 22:49:33 +0200
committerLemonBoy <thatlemon@gmail.com>2019-10-10 09:38:57 +0200
commitdfcbca8d2fed33c1fbd47b0b4e98ed0c214fa7e6 (patch)
treeb4564558a74447a794976e919dd4fa59d158b760 /test
parent86e5bbffd757c211c062acef6c244ec94f5db668 (diff)
downloadzig-dfcbca8d2fed33c1fbd47b0b4e98ed0c214fa7e6.tar.gz
zig-dfcbca8d2fed33c1fbd47b0b4e98ed0c214fa7e6.zip
Add i386/mingw to the test rooster
Diffstat (limited to 'test')
-rw-r--r--test/tests.zig11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 3c6baeb360..66af44da47 100644
--- 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,
},