Commit 34863224c3

Cody Tapscott <topolarity@tapscott.me>
2022-10-13 21:49:35
Re-enable `mulAdd` f128 tests on i386-linux
1 parent 1e27813
Changed files (1)
test
behavior
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();
 }