aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/math.zig
diff options
context:
space:
mode:
authorMeghan <hello@nektro.net>2022-12-12 03:01:11 -0800
committerVeikka Tuominen <git@vexu.eu>2022-12-13 13:33:16 +0200
commit3318611618665e6d09ddad866efdabf54eb498ce (patch)
tree680ee0c9a988b8522a3f292b8051abfca6c2c86b /test/behavior/math.zig
parent8691fde0f631daf527a4e030d0be9d26c5b16208 (diff)
downloadzig-3318611618665e6d09ddad866efdabf54eb498ce.tar.gz
zig-3318611618665e6d09ddad866efdabf54eb498ce.zip
re-enable "signed zeros are represented properly" beahvior tests for f80 and c_longdouble
Diffstat (limited to 'test/behavior/math.zig')
-rw-r--r--test/behavior/math.zig6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/behavior/math.zig b/test/behavior/math.zig
index d352457bbb..d819743390 100644
--- a/test/behavior/math.zig
+++ b/test/behavior/math.zig
@@ -1440,11 +1440,9 @@ test "signed zeros are represented properly" {
try testOne(f16);
try testOne(f32);
try testOne(f64);
- // TODO enable this
- //try testOne(f80);
+ try testOne(f80);
try testOne(f128);
- // TODO enable this
- //try testOne(c_longdouble);
+ try testOne(c_longdouble);
}
fn testOne(comptime T: type) !void {