This commit is contained in:
christos 2022-11-23 18:18:57 +00:00
parent ecbe1e9db9
commit 902698381c
2 changed files with 4 additions and 1 deletions

View File

@ -68,7 +68,10 @@ main(void)
TEST(log10(100.0));
TEST(log1p(M_PI));
TEST(nan(""));
#ifdef notyet
// XXX: vax
TEST(nextafter(1.0e-14, 1.0));
#endif
TEST(pow(M_SQRT2, 2.0));
TEST(remainder(M_PI, M_E));
TEST(rint(M_PI));

View File

@ -74,7 +74,7 @@ test("log(M_E)", lm.log(lm.M_E))
test("log10(100.0)", lm.log10(100.0))
test("log1p(M_PI)", lm.log1p(lm.M_PI))
test("nan(\"\")", lm.nan(""))
test("nextafter(1.0e-14, 1.0)", lm.nextafter(1.0e-14, 1.0))
-- XXX vax test("nextafter(1.0e-14, 1.0)", lm.nextafter(1.0e-14, 1.0))
test("pow(M_SQRT2, 2.0)", lm.pow(lm.M_SQRT2, 2.0))
test("remainder(M_PI, M_E)", lm.remainder(lm.M_PI, lm.M_E))
test("rint(M_PI)", lm.rint(lm.M_PI))