blob: ea487e256bc684a7a19038e43a6aaef2a30accdc [file] [log] [blame]
//@ skip if $architecture == "arm" and $hostOS == "darwin"
description("This test checks the behavior of the Math.ceil and Math.floor on denormalized FP values.");
shouldBe("Math.ceil(Number.MIN_VALUE)", "1");
shouldBe("Math.ceil(-Number.MIN_VALUE)", "-0");
shouldBe("Math.floor(Number.MIN_VALUE)", "0");
shouldBe("Math.floor(-Number.MIN_VALUE)", "-1");