diff options
| author | Veikka Tuominen <git@vexu.eu> | 2022-02-22 15:04:12 +0200 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2022-02-23 10:40:40 +0200 |
| commit | 92beb2b490d7d86825d2e0eae3287c06477c9e81 (patch) | |
| tree | db759eb5a68383b3ffd92a5e08acbe54d689416b /test/behavior | |
| parent | 923b07bac797d66fe6d393cf823402c742250f48 (diff) | |
| download | zig-92beb2b490d7d86825d2e0eae3287c06477c9e81.tar.gz zig-92beb2b490d7d86825d2e0eae3287c06477c9e81.zip | |
stage2: misc fixes in Sema
Diffstat (limited to 'test/behavior')
| -rw-r--r-- | test/behavior/type_info.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/behavior/type_info.zig b/test/behavior/type_info.zig index 29bb8b52b2..8ba627e686 100644 --- a/test/behavior/type_info.zig +++ b/test/behavior/type_info.zig @@ -323,6 +323,10 @@ fn testOpaque() !void { } test "type info: function type info" { + if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; + // wasm doesn't support align attributes on functions if (builtin.target.cpu.arch == .wasm32 or builtin.target.cpu.arch == .wasm64) return error.SkipZigTest; try testFunction(); |
