disable regressed wasm32 behavior tests from LLVM 14

This commit is contained in:
Andrew Kelley
2022-07-05 15:46:12 -07:00
parent fc7c0e07be
commit e8ce1728e9
3 changed files with 21 additions and 0 deletions

View File

@@ -177,6 +177,15 @@ test {
{
_ = @import("behavior/bugs/11227.zig");
_ = @import("behavior/export.zig");
}
if (builtin.zig_backend != .stage2_arm and
builtin.zig_backend != .stage2_x86_64 and
builtin.zig_backend != .stage2_aarch64 and
builtin.zig_backend != .stage2_wasm and
builtin.zig_backend != .stage2_c and
builtin.zig_backend != .stage1)
{
_ = @import("behavior/export_self_referential_type_info.zig");
}
}