You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
550 B
26 lines
550 B
// RUN: rm -rf %t-dir
|
|
// RUN: mkdir %t-dir && cd %t-dir
|
|
// RUN: %clangxx_asan -fsanitize-coverage=func,trace-pc-guard %s -o test.exe
|
|
// RUN: %env_asan_opts=coverage=1 %run ./test.exe
|
|
//
|
|
// RUN: %sancov print *.sancov | FileCheck %s
|
|
#include <stdio.h>
|
|
|
|
void foo() { fputs("FOO", stderr); }
|
|
void bar() { fputs("BAR", stderr); }
|
|
|
|
int main(int argc, char **argv) {
|
|
if (argc == 2) {
|
|
foo();
|
|
bar();
|
|
} else {
|
|
bar();
|
|
foo();
|
|
}
|
|
}
|
|
|
|
// CHECK: 0x{{[0-9a-f]*}}
|
|
// CHECK: 0x{{[0-9a-f]*}}
|
|
// CHECK: 0x{{[0-9a-f]*}}
|
|
// CHECK-NOT: 0x{{[0-9a-f]*}}
|