diff options
| author | jimingham <jingham@apple.com> | 2024-05-31 10:43:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-31 10:43:05 -0700 |
| commit | 1e81b67925fdd77a3d65ba2a7f652d1e840512f4 (patch) | |
| tree | ae6bc91a2794c694002c92a2290d029155255cdb /lldb/test/API/python_api | |
| parent | 7caa812f2707fa3649c01000de6550dac226ce87 (diff) | |
| download | llvm-1e81b67925fdd77a3d65ba2a7f652d1e840512f4.zip llvm-1e81b67925fdd77a3d65ba2a7f652d1e840512f4.tar.gz llvm-1e81b67925fdd77a3d65ba2a7f652d1e840512f4.tar.bz2 | |
[lldb] FormatManager::GetPossibleMatches assumes all ValueObjects have targets. (#93880)
But one made in a situation where that's impossible might only have an
error, and no symbol context, so that's not necessarily true. Check for
the target's validity before using it.
Fixes issue #93313
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/run_locker/TestRunLocker.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/run_locker/TestRunLocker.py b/lldb/test/API/python_api/run_locker/TestRunLocker.py index 4e0dd26..d525bbf 100644 --- a/lldb/test/API/python_api/run_locker/TestRunLocker.py +++ b/lldb/test/API/python_api/run_locker/TestRunLocker.py @@ -85,6 +85,13 @@ class TestRunLocker(TestBase): # you aren't supposed to do while running, and that we get some # actual error: val = target.EvaluateExpression("SomethingToCall()") + # There was a bug [#93313] in the printing that would cause repr to crash, so I'm + # testing that separately. + self.assertIn( + "can't evaluate expressions when the process is running", + repr(val), + "repr works" + ) error = val.GetError() self.assertTrue(error.Fail(), "Failed to run expression") self.assertIn( |
