aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-04-24 10:44:41 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-04-24 10:44:41 -0700
commite86cee258cb0eefca14a94f6b3abb39e8a5f2ef9 (patch)
tree6d9aa3b21685b1581787246f953db94cdb486693 /test/tests.zig
parent224fbb23c44628b215662c6199dff11cc2851f04 (diff)
parent8530b6b7242ebf43b5cb4ae3a2644593f4961a5e (diff)
downloadzig-e86cee258cb0eefca14a94f6b3abb39e8a5f2ef9.tar.gz
zig-e86cee258cb0eefca14a94f6b3abb39e8a5f2ef9.zip
Merge remote-tracking branch 'origin/master' into stage2-whole-file-astgen
In particular I wanted the change that makes `suspend;` illegal in the parser.
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 5b537d9cc8..b6168f04e2 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -214,6 +214,22 @@ const test_targets = blk: {
TestTarget{
.target = .{
+ .cpu_arch = .powerpc,
+ .os_tag = .linux,
+ .abi = .none,
+ },
+ },
+ TestTarget{
+ .target = .{
+ .cpu_arch = .powerpc,
+ .os_tag = .linux,
+ .abi = .musl,
+ },
+ .link_libc = true,
+ },
+
+ TestTarget{
+ .target = .{
.cpu_arch = .riscv64,
.os_tag = .linux,
.abi = .none,