We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5753941 commit cbd2559Copy full SHA for cbd2559
lldb/packages/Python/lldbsuite/test/lldbplatformutil.py
@@ -34,6 +34,8 @@ def check_first_register_readable(test_case):
34
test_case.expect("register read r0", substrs=["r0 = 0x"])
35
elif arch in ["powerpc64le"]:
36
37
+ elif re.match("^rv(32|64)", arch):
38
+ test_case.expect("register read zero", substrs=["zero = 0x"])
39
else:
40
# TODO: Add check for other architectures
41
test_case.fail(
0 commit comments