mib created this revision. mib added a reviewer: labath. mib added a project: LLDB. Herald added a subscriber: lldb-commits.
[lldb/test] Fix TestLoadUnload failure introduced in e0dbd025131c4d77d8a5050a91d391d950529a8c <https://reviews.llvm.org/rGe0dbd025131c4d77d8a5050a91d391d950529a8c> It seems that `env_cmd_string` is declared and used few lines under this self.runCmd expression. I guess this is some left-over from an older version. Signed-off-by: Med Ismail Bennani <medismail.benn...@gmail.com> Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D78094 Files: lldb/test/API/functionalities/load_unload/TestLoadUnload.py Index: lldb/test/API/functionalities/load_unload/TestLoadUnload.py =================================================================== --- lldb/test/API/functionalities/load_unload/TestLoadUnload.py +++ lldb/test/API/functionalities/load_unload/TestLoadUnload.py @@ -186,8 +186,6 @@ substrs=[os.path.basename(old_dylib)], matching=True) - self.runCmd(env_cmd_string) - lldbutil.run_break_set_by_file_and_line( self, "d.cpp", self.line_d_function, num_expected_locations=1) # After run, make sure the non-hidden library is picked up.
Index: lldb/test/API/functionalities/load_unload/TestLoadUnload.py =================================================================== --- lldb/test/API/functionalities/load_unload/TestLoadUnload.py +++ lldb/test/API/functionalities/load_unload/TestLoadUnload.py @@ -186,8 +186,6 @@ substrs=[os.path.basename(old_dylib)], matching=True) - self.runCmd(env_cmd_string) - lldbutil.run_break_set_by_file_and_line( self, "d.cpp", self.line_d_function, num_expected_locations=1) # After run, make sure the non-hidden library is picked up.
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits