Skip to content

Commit 1ec8197

Browse files
committed
Temporarily skip this test for Python 3.9.
When the parsed command python code is run on 3.9, I get: File ".../lib/python3.9/site-packages/lldb/plugins/parsed_cmd.py", line 124, in translate_value return cls.translators[value_type](value) TypeError: 'staticmethod' object is not callable But this works correctly in Python 3.10 on macOS and Linux. I'm guessing something changed between those versions, and I'll have to do something to work around the difference. But I'm going to skip the test on 3.9 while I figure that out.
1 parent 429919e commit 1ec8197

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lldb/test/API/commands/command/script/add/TestAddParsedCommand.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class ParsedCommandTestCase(TestBase):
1515

1616
# This crashes on the x86_64 Debian bot, but the failure is not helpful.
1717
# Disable the test while I try to find a way to reproduce.
18+
@skipIf(py_version=("<=", (3, 9)))
1819
def test(self):
1920
self.pycmd_tests()
2021

0 commit comments

Comments
 (0)