aboutsummaryrefslogtreecommitdiff
path: root/lib/asan/lit_tests/sleep_before_dying.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asan/lit_tests/sleep_before_dying.c')
-rw-r--r--lib/asan/lit_tests/sleep_before_dying.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/asan/lit_tests/sleep_before_dying.c b/lib/asan/lit_tests/sleep_before_dying.c
new file mode 100644
index 000000000000..df9eba276039
--- /dev/null
+++ b/lib/asan/lit_tests/sleep_before_dying.c
@@ -0,0 +1,10 @@
+// RUN: %clang -g -fsanitize=address -O2 %s -o %t
+// RUN: ASAN_OPTIONS="sleep_before_dying=1" %t 2>&1 | FileCheck %s
+
+#include <stdlib.h>
+int main() {
+ char *x = (char*)malloc(10 * sizeof(char));
+ free(x);
+ return x[5];
+ // CHECK: Sleeping for 1 second
+}