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-18 13:54:22 -0400
commit07f0de6a8a9a152cfbd76e458d99d992b59e9e06 (patch)
tree35619c38694eeb6cc7889778604e33062fddd0ec /test
parentafbf99c84671992acb4129a6a7bc70d604c4d00d (diff)
downloadzig-07f0de6a8a9a152cfbd76e458d99d992b59e9e06.tar.gz
zig-07f0de6a8a9a152cfbd76e458d99d992b59e9e06.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;