aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2020-05-18 17:45:06 +0200
committerJakub Konka <kubkon@jakubkonka.com>2020-05-18 17:56:17 +0200
commit34f84c36082015bb8aacfcfb27cecf44e8e6eb3a (patch)
treeeec7aa2f4695e01255714b4583ac67bfe300ed5b /build.zig
parent2a59ecd7eca7318e9a66d856b04dd9fa45b2d69d (diff)
downloadzig-34f84c36082015bb8aacfcfb27cecf44e8e6eb3a.tar.gz
zig-34f84c36082015bb8aacfcfb27cecf44e8e6eb3a.zip
Narrow down behaviour test cases; this removes wasmtime-enabled check in tests
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 9e409fd874..4d71b0fb36 100644
--- a/build.zig
+++ b/build.zig
@@ -117,7 +117,7 @@ pub fn build(b: *Builder) !void {
fmt_step.dependOn(&fmt_build_zig.step);
// TODO for the moment, skip wasm32-wasi until bugs are sorted out.
- test_step.dependOn(tests.addPkgTests(b, test_filter, "test/stage1/behavior.zig", "behavior", "Run the behavior tests", modes, false, skip_non_native, skip_libc, is_wine_enabled, is_qemu_enabled, false, glibc_multi_dir));
+ test_step.dependOn(tests.addPkgTests(b, test_filter, "test/stage1/behavior.zig", "behavior", "Run the behavior tests", modes, false, skip_non_native, skip_libc, is_wine_enabled, is_qemu_enabled, is_wasmtime_enabled, glibc_multi_dir));
test_step.dependOn(tests.addPkgTests(b, test_filter, "lib/std/std.zig", "std", "Run the standard library tests", modes, false, skip_non_native, skip_libc, is_wine_enabled, is_qemu_enabled, is_wasmtime_enabled, glibc_multi_dir));