Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 758020
Collapse All | Expand All

(-)numba-0.52.0/numba/tests/test_jitclasses.py (+1 lines)
Lines 929-934 class TestJitClass(TestCase, MemoryLeakM Link Here
929
        self.assertEqual(t[2:2:1], 2)
929
        self.assertEqual(t[2:2:1], 2)
930
        self.assertEqual(t[6:6:1], 3)
930
        self.assertEqual(t[6:6:1], 3)
931
931
932
    @unittest.skip("Gentoo has not reverted the LLVM 'truncate longlabel' patch")
932
    def test_jitclass_longlabel_not_truncated(self):
933
    def test_jitclass_longlabel_not_truncated(self):
933
        # See issue #3872, llvm 7 introduced a max label length of 1024 chars
934
        # See issue #3872, llvm 7 introduced a max label length of 1024 chars
934
        # Numba ships patched llvm 7.1 (ppc64le) and patched llvm 8 to undo this
935
        # Numba ships patched llvm 7.1 (ppc64le) and patched llvm 8 to undo this
(-)numba-0.52.0/numba/tests/test_record_dtype.py (-2 / +2 lines)
Lines 796-802 class TestRecordDtype(unittest.TestCase) Link Here
796
        # len(transformed) is generally 10, but could be longer if a large
796
        # len(transformed) is generally 10, but could be longer if a large
797
        # number of typecodes are in use. Checking <20 should provide enough
797
        # number of typecodes are in use. Checking <20 should provide enough
798
        # tolerance.
798
        # tolerance.
799
        self.assertLess(len(transformed), 20)
799
        self.assertLessEqual(len(transformed), 20)
800
800
801
        struct_arr = types.Array(rec, 1, 'C')
801
        struct_arr = types.Array(rec, 1, 'C')
802
        transformed = mangle_type(struct_arr)
802
        transformed = mangle_type(struct_arr)
Lines 804-810 class TestRecordDtype(unittest.TestCase) Link Here
804
        self.assertNotIn('first', transformed)
804
        self.assertNotIn('first', transformed)
805
        self.assertNotIn('second', transformed)
805
        self.assertNotIn('second', transformed)
806
        # Length is usually 50 - 5 chars tolerance as above.
806
        # Length is usually 50 - 5 chars tolerance as above.
807
        self.assertLess(len(transformed), 50)
807
        self.assertLessEqual(len(transformed), 50)
808
808
809
    def test_record_two_arrays(self):
809
    def test_record_two_arrays(self):
810
        """
810
        """

Return to bug 758020