[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / compiler-rt / test / asan / TestCases / sleep_for_debugger.c
blob477708d7abf71bfdff6792946673b7637a41f881
1 // RUN: %clang_asan -O2 %s -o %t
2 // RUN: %env_asan_opts=verbosity=1:sleep_before_init=1:sleep_after_init=1:sleep_before_dying=1 not %run %t 2>&1 | FileCheck %s
4 #include <stdlib.h>
6 int main() {
7 char *x = (char*)malloc(10 * sizeof(char));
8 free(x);
9 return x[5];
12 // CHECK: Sleeping for 1 second(s) before init
13 // CHECK: AddressSanitizer Init done
14 // CHECK: Sleeping for 1 second(s) after init
15 // CHECK: ERROR: AddressSanitizer
16 // CHECK: ABORTING
17 // CHECK: Sleeping for 1 second(s) before dying