summaryrefslogtreecommitdiffstats
path: root/lldb/utils/test/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/utils/test/main.c')
-rw-r--r--lldb/utils/test/main.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/lldb/utils/test/main.c b/lldb/utils/test/main.c
deleted file mode 100644
index c0f600995d2..00000000000
--- a/lldb/utils/test/main.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-
-int main(int argc, const char *argv[]) {
- int *null_ptr = 0;
- printf("Hello, fault!\n");
- u_int32_t val = (arc4random() & 0x0f);
- printf("val=%u\n", val);
- if (val == 0x07) // Lucky 7 :-)
- printf("Now segfault %d\n", *null_ptr);
- else
- printf("Better luck next time!\n");
-}
OpenPOWER on IntegriCloud