This revision was automatically updated to reflect the committed changes. Closed by commit rG0783ad9e6a2c: [lldb] Switch expect to runCmd in TestRecursiveTypes (NFC) (authored by kastiglione).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D91206/new/ https://reviews.llvm.org/D91206 Files: lldb/test/API/types/TestRecursiveTypes.py Index: lldb/test/API/types/TestRecursiveTypes.py =================================================================== --- lldb/test/API/types/TestRecursiveTypes.py +++ lldb/test/API/types/TestRecursiveTypes.py @@ -50,5 +50,5 @@ self.runCmd("run", RUN_SUCCEEDED) - self.expect("print tpi") - self.expect("print *tpi") + self.runCmd("print tpi") + self.runCmd("print *tpi")
Index: lldb/test/API/types/TestRecursiveTypes.py =================================================================== --- lldb/test/API/types/TestRecursiveTypes.py +++ lldb/test/API/types/TestRecursiveTypes.py @@ -50,5 +50,5 @@ self.runCmd("run", RUN_SUCCEEDED) - self.expect("print tpi") - self.expect("print *tpi") + self.runCmd("print tpi") + self.runCmd("print *tpi")
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits