summaryrefslogtreecommitdiffstats
path: root/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp')
-rw-r--r--packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp b/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp
new file mode 100644
index 0000000..cbb9b21
--- /dev/null
+++ b/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp
@@ -0,0 +1,11 @@
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+
+int main (int argc, char **argv)
+{
+ char *evil = getenv("EVIL");
+ puts(evil);
+
+ return 0;
+}
OpenPOWER on IntegriCloud