summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-10-27 23:18:52 +0000
committerChris Bieneman <beanz@apple.com>2016-10-27 23:18:52 +0000
commit614dc150ec761140d21f52c9bb1a1c45db38e12f (patch)
tree92f2e6ada3b854e9a2ac00e34d075680d3b09f19 /lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands
parent75f1de0c1a939258054869ebdbdd7a20b917201b (diff)
downloadbcm5719-llvm-614dc150ec761140d21f52c9bb1a1c45db38e12f.tar.gz
bcm5719-llvm-614dc150ec761140d21f52c9bb1a1c45db38e12f.zip
Revert "[Test Suite] Pull generateSource into lldbtest"
This reverts commit r285357. I committed this patch accidentally out of order. Will recommit when the change this depends on is landed. llvm-svn: 285361
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands')
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/TestPluginCommands.py4
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/plugin.cpp (renamed from lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/plugin.cpp.template)10
2 files changed, 9 insertions, 5 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/TestPluginCommands.py b/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/TestPluginCommands.py
index 18fcc41fa9f..9341ff97e6f 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/TestPluginCommands.py
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/TestPluginCommands.py
@@ -18,10 +18,6 @@ class PluginCommandTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
- def setUp(self):
- TestBase.setUp(self)
- self.generateSource('plugin.cpp')
-
@skipIfNoSBHeaders
# Requires a compatible arch and platform to link against the host's built
# lldb lib.
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/plugin.cpp.template b/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/plugin.cpp
index 393e9feec79..be3d29325de 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/plugin.cpp.template
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/plugin.cpp
@@ -13,7 +13,15 @@ Compile this into a dylib foo.dylib and load by placing in appropriate locations
by typing plugin load foo.dylib at the LLDB command line
*/
-%include_SB_APIs%
+#if defined (__APPLE__)
+#include <LLDB/SBCommandInterpreter.h>
+#include <LLDB/SBCommandReturnObject.h>
+#include <LLDB/SBDebugger.h>
+#else
+#include <lldb/API/SBCommandInterpreter.h>
+#include <lldb/API/SBCommandReturnObject.h>
+#include <lldb/API/SBDebugger.h>
+#endif
namespace lldb {
bool
OpenPOWER on IntegriCloud