2013-01-19 00:44:27 +08:00
|
|
|
// RUN: %clangxx_asan %s -o %t
|
|
|
|
// RUN: rm -f %t.log.*
|
|
|
|
// Set verbosity to 1 so that the log files are opened prior to fork().
|
2014-05-26 21:44:57 +08:00
|
|
|
// RUN: env ASAN_OPTIONS="log_path=%t.log verbosity=1" not %run %t 2> %t.out
|
2014-11-14 00:01:23 +08:00
|
|
|
// RUN: for f in %t.log.log_path_fork_test.cc* ; do FileCheck %s < $f; done
|
2013-01-19 00:44:27 +08:00
|
|
|
// RUN: [ `ls %t.log.* | wc -l` == 2 ]
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
void *x = malloc(10);
|
|
|
|
free(x);
|
|
|
|
if (fork() == -1) return 1;
|
|
|
|
// There are two processes at this point, thus there should be two distinct
|
|
|
|
// error logs.
|
|
|
|
free(x);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: ERROR: AddressSanitizer
|