aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-07-18 13:54:22 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-07-22 12:49:26 -0400
commit16be70cbbf8e6dc658b9fcacd3366df8f83fffa8 (patch)
tree27dd2a2a5db292ed20e4722b66e39620a77ca8c9 /test
parentbc31c1280e012377c3a2b00356a5876919a72775 (diff)
downloadzig-16be70cbbf8e6dc658b9fcacd3366df8f83fffa8.tar.gz
zig-16be70cbbf8e6dc658b9fcacd3366df8f83fffa8.zip
compiler-rt: add __muldi3
Diffstat (limited to 'test')
-rw-r--r--test/tests.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig
index d94c012ac1..c8aea33591 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -170,6 +170,7 @@ pub fn addPkgTests(
name: []const u8,
desc: []const u8,
modes: []const Mode,
+ single_threaded_list: []const bool,
skip_non_native: bool,
) *build.Step {
const step = b.step(b.fmt("test-{}", name), desc);
@@ -179,7 +180,7 @@ pub fn addPkgTests(
continue;
for (modes) |mode| {
for ([_]bool{ false, true }) |link_libc| {
- for ([_]bool{ false, true }) |single_threaded| {
+ for (single_threaded_list) |single_threaded| {
if (link_libc and !is_native) {
// don't assume we have a cross-compiling libc set up
continue;