From 52560ba1053c0abb307f7d91bbf97f3a39da63ce Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Fri, 15 Jun 2018 00:55:53 +0000 Subject: Change TestExec.py from creating an i386+x86_64 fat binary on darwin systems and re-execing itself, to creating two separate test programs; lldb runs the first program and it exec's the second. Support for compiling for i386 is going away. llvm-svn: 334783 --- .../Python/lldbsuite/test/functionalities/exec/secondprog.cpp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp') diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp b/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp new file mode 100644 index 00000000000..5653471c153 --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp @@ -0,0 +1,5 @@ +#include +int main () +{ + puts ("I am the second program."); // Set breakpoint 2 here +} -- cgit v1.2.3