Author: Adrian Prantl Date: 2025-10-24T15:29:14-07:00 New Revision: 9b80fc39606f6f02b88a21ac29e98a74b0b7426a
URL: https://github.com/llvm/llvm-project/commit/9b80fc39606f6f02b88a21ac29e98a74b0b7426a DIFF: https://github.com/llvm/llvm-project/commit/9b80fc39606f6f02b88a21ac29e98a74b0b7426a.diff LOG: [lldb] Add missing function call in test (NFC) Added: Modified: lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py Removed: ################################################################################ diff --git a/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py b/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py index 8a321b2ff6324..0f40dfd09c958 100644 --- a/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py +++ b/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py @@ -40,7 +40,7 @@ def run_arch(self, exe, arch): launch_info = target.GetLaunchInfo() error = lldb.SBError() process = target.Launch(launch_info, error) - self.assertTrue(error.Success, str(error)) + self.assertTrue(error.Success(), str(error)) self.assertState(process.GetState(), lldb.eStateExited) self.assertIn("slice: {}".format(arch), process.GetSTDOUT(1000)) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
