Skip to content

Commit c1dfe42

Browse files
committed
test: Remove an exception for a glibc test failure in crt-test
I no longer can reproduce the issue that this works around; neither on current environments or when testing building with older distributions.
1 parent e4534c5 commit c1dfe42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/crt-test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ void test_math_trig() {
12831283
TEST_FLT_NAN_ANY(acos(F(INFINITY))); \
12841284
TEST_FLT_NAN_ANY(acos(F(-INFINITY))); \
12851285
TEST_FLT_NAN(acos(F(NAN)), F(NAN)); \
1286-
/* TEST_FLT_NAN(acos(-F(NAN)), -F(NAN)) - This fails on glibc/x86_64 for acosl */
1286+
TEST_FLT_NAN(acos(-F(NAN)), -F(NAN))
12871287

12881288
TEST_ACOS(acos);
12891289
TEST_ACOS(acosf);

0 commit comments

Comments
 (0)