Skip to content

Commit fb61dce

Browse files
committed
[lldb] Fix test expectation in TestCoroutineHandle.py for 32-bit systems
1 parent 7524db4 commit fb61dce

File tree

1 file changed

+1
-1
lines changed
  • lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/coroutine_handle

1 file changed

+1
-1
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/coroutine_handle/TestCoroutineHandle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def do_test(self, stdlib_type):
9797
self.expect_expr("type_erased_hdl",
9898
result_summary=re.compile("^coro frame = 0x[0-9a-f]*$"),
9999
result_children=[
100-
ValueCheck(name="resume", value = "0x0000000000000000"),
100+
ValueCheck(name="resume", value = re.compile("^0x0+$")),
101101
ValueCheck(name="destroy", summary = test_generator_func_ptr_re),
102102
ValueCheck(name="promise", children=[
103103
ValueCheck(name="current_value", value = "42"),

0 commit comments

Comments
 (0)