diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp')
-rw-r--r-- | packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp b/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp new file mode 100644 index 0000000000000..5653471c15307 --- /dev/null +++ b/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp @@ -0,0 +1,5 @@ +#include <stdio.h> +int main () +{ + puts ("I am the second program."); // Set breakpoint 2 here +} |