kwk requested changes to this revision.
kwk added inline comments.
This revision now requires changes to proceed.


================
Comment at: lldb/packages/Python/lldbsuite/test/lldbutil.py:789
+                             signal_threads = signaled)
+        test.fail("Stopped for another reason: Breakpoint: %d Signaled: %d 
Crashed: %d"%(len(bkpts), len(crashed), len(signaled)))
+
----------------
I think the order of the placeholders is wrong either in the format string or 
in the arguments. This should work:

```
 test.fail("Stopped for another reason: Breakpoint: %d Signaled: %d Crashed: 
%d"%(len(bkpts), len(signaled), len(crashed)))
```


Repository:
  rLLDB LLDB

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D65682/new/

https://reviews.llvm.org/D65682



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to