[Lldb-commits] [PATCH] D91206: [lldb] Switch expect to runCmd in TestRecursiveTypes (NFC)
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 11 10:07:13 PST 2020
kastiglione updated this revision to Diff 304568.
kastiglione added a comment.
Remove bogus message.
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")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D91206.304568.patch
Type: text/x-patch
Size: 412 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20201111/20defe7d/attachment.bin>
More information about the lldb-commits
mailing list