commit | 814236d6947dfcc4773517449da1e626e0472d3c | [log] [tgz] |
---|---|---|
author | Zachary Turner <zturner@google.com> | Wed Oct 21 17:48:52 2015 +0000 |
committer | Zachary Turner <zturner@google.com> | Wed Oct 21 17:48:52 2015 +0000 |
tree | 1cd1682d36b89654f22cc948a9d347142be1f0ca | |
parent | c96d0dd431638464173794abbded3b9afe1841f2 [diff] [blame] |
Use six to portably handle module renames in Python 2 and 3 llvm-svn: 250915
diff --git a/lldb/test/api/multiple-debuggers/TestMultipleDebuggers.py b/lldb/test/api/multiple-debuggers/TestMultipleDebuggers.py index 1064e37..369a6b1 100644 --- a/lldb/test/api/multiple-debuggers/TestMultipleDebuggers.py +++ b/lldb/test/api/multiple-debuggers/TestMultipleDebuggers.py
@@ -1,6 +1,8 @@ """Test the lldb public C++ api when doing multiple debug sessions simultaneously.""" -import os, re, StringIO +import lldb_shared + +import os, re import unittest2 from lldbtest import * import lldbutil