Skip to content

Commit d807550

Browse files
committed
Mark test_correctly_rounded_true_division as cpython specific
1 parent e697983 commit d807550

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

graalpython/com.oracle.graal.python.test/src/tests/unittest_tags/test_long.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
*graalpython.lib-python.3.test.test_long.LongTest.test_bit_length
44
*graalpython.lib-python.3.test.test_long.LongTest.test_bitop_identities
55
*graalpython.lib-python.3.test.test_long.LongTest.test_conversion
6+
*graalpython.lib-python.3.test.test_long.LongTest.test_correctly_rounded_true_division
67
*graalpython.lib-python.3.test.test_long.LongTest.test_division
78
*graalpython.lib-python.3.test.test_long.LongTest.test_float_conversion
89
*graalpython.lib-python.3.test.test_long.LongTest.test_float_overflow

graalpython/lib-python/3/test/test_long.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -821,6 +821,7 @@ def check_truediv(self, a, b, skip_small=True):
821821
self.assertEqual(expected, got, "Incorrectly rounded division {}/{}: "
822822
"expected {}, got {}".format(a, b, expected, got))
823823

824+
@support.impl_detail("cpython specific", graalvm=False)
824825
@support.requires_IEEE_754
825826
def test_correctly_rounded_true_division(self):
826827
# more stringent tests than those above, checking that the

0 commit comments

Comments
 (0)