-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Description
Describe the bug, including details regarding any error messages, version, and platform.
test-cuda-python fails on test_gdb for several tests. All errors seem to not be able to match the type, like:
def check_stack_repr(gdb, expr, expected):
"""
Check printing a stack-located value.
"""
s = gdb.print_value(expr)
if isinstance(expected, re.Pattern):
assert expected.match(s), s
else:
> assert s == expected
E AssertionError: assert '<incomplete type>' == 'arrow::null()'
E - arrow::null()
E + <incomplete type>
Component(s)
Continuous Integration, Python