[Lldb-commits] [PATCH] D24890: implement timeout sample support for Linux

Todd Fiala via lldb-commits lldb-commits at lists.llvm.org
Fri Sep 23 17:09:28 PDT 2016


tfiala added inline comments.

================
Comment at: packages/Python/lldbsuite/pre_kill_hook/linux.py:68
@@ +67,3 @@
+        else:
+            raise Exception("failed to call 'perf record .., error: ")
+
----------------
Haha woops - that should be:
```
raise Exception("failed to call 'perf record ..., error code: {}".format(returncode))
```

I'll fix that in the final.


https://reviews.llvm.org/D24890





More information about the lldb-commits mailing list