From 34863224c388570892d3a0f110138de56a74d04c Mon Sep 17 00:00:00 2001 From: Cody Tapscott Date: Thu, 13 Oct 2022 12:49:35 -0700 Subject: [PATCH] Re-enable `mulAdd` f128 tests on i386-linux --- test/behavior/muladd.zig | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/behavior/muladd.zig b/test/behavior/muladd.zig index f31b8d3c5c..1ce5ffb1e7 100644 --- a/test/behavior/muladd.zig +++ b/test/behavior/muladd.zig @@ -71,12 +71,6 @@ test "@mulAdd f128" { if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO - if (builtin.zig_backend == .stage1 and - builtin.cpu.arch == .i386 and builtin.os.tag == .linux) - { - return error.SkipZigTest; - } - comptime try testMulAdd128(); try testMulAdd128(); }