diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2020-05-18 17:45:06 +0200 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2020-05-18 17:56:17 +0200 |
| commit | 34f84c36082015bb8aacfcfb27cecf44e8e6eb3a (patch) | |
| tree | eec7aa2f4695e01255714b4583ac67bfe300ed5b /test/stage1/behavior.zig | |
| parent | 2a59ecd7eca7318e9a66d856b04dd9fa45b2d69d (diff) | |
| download | zig-34f84c36082015bb8aacfcfb27cecf44e8e6eb3a.tar.gz zig-34f84c36082015bb8aacfcfb27cecf44e8e6eb3a.zip | |
Narrow down behaviour test cases; this removes wasmtime-enabled check in tests
Diffstat (limited to 'test/stage1/behavior.zig')
| -rw-r--r-- | test/stage1/behavior.zig | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/stage1/behavior.zig b/test/stage1/behavior.zig index 61b0c1aa56..cc498df959 100644 --- a/test/stage1/behavior.zig +++ b/test/stage1/behavior.zig @@ -1,9 +1,13 @@ +const builtin = @import("builtin"); + comptime { _ = @import("behavior/align.zig"); _ = @import("behavior/alignof.zig"); _ = @import("behavior/array.zig"); - _ = @import("behavior/asm.zig"); - _ = @import("behavior/async_fn.zig"); + if (builtin.os.tag != .wasi) { + _ = @import("behavior/asm.zig"); + _ = @import("behavior/async_fn.zig"); + } _ = @import("behavior/atomics.zig"); _ = @import("behavior/await_struct.zig"); _ = @import("behavior/bit_shifting.zig"); |
