authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-04-27 18:28:33-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-04-27 18:28:33-07:00
log1cd799317b4c5f19ab2cf5413be5d280de6a8476
treeb2880880982091d2008a3ff90803be690cfbf5c7
parent51f8ce182573e940ee090c1df146a83de63d6b5c

compiler-rt: remove invalid test

This was leftover from testing std.math.sin

1 files changed, 0 insertions(+), 6 deletions(-)

lib/std/special/compiler_rt/sin.zig-6
......@@ -111,12 +111,6 @@ pub fn sinq(x: f128) callconv(.C) f128 {
111111 return sin(@floatCast(f64, x));
112112}
113113
114test "sin" {
115 try expect(sin(@as(f32, 0.0)) == sinf(0.0));
116 try expect(sin(@as(f64, 0.0)) == sin(0.0));
117 try expect(comptime (math.sin(@as(f64, 2))) == math.sin(@as(f64, 2)));
118}
119
120114test "sin32" {
121115 const epsilon = 0.00001;
122116