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.
66 lines
1.8 KiB
66 lines
1.8 KiB
4 months ago
|
// RUN: %clangxx_asan -fsanitize-coverage=func,trace-pc-guard -DSHARED %s -shared -o %dynamiclib -fPIC %ld_flags_rpath_so
|
||
|
// RUN: %clangxx_asan -fsanitize-coverage=func,trace-pc-guard %s %ld_flags_rpath_exe -o %t
|
||
|
// RUN: rm -rf %t-dir && mkdir -p %t-dir && cd %t-dir
|
||
|
// RUN: %env_asan_opts=coverage=1:verbosity=1 %run %t 2>&1 | FileCheck %s
|
||
|
//
|
||
|
// UNSUPPORTED: ios
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include <sanitizer/coverage_interface.h>
|
||
|
|
||
|
#ifdef SHARED
|
||
|
void bar1() { printf("bar1\n"); }
|
||
|
void bar2() { printf("bar2\n"); }
|
||
|
#else
|
||
|
__attribute__((noinline)) void foo1() { printf("foo1\n"); }
|
||
|
__attribute__((noinline)) void foo2() { printf("foo2\n"); }
|
||
|
void bar1();
|
||
|
void bar2();
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
fprintf(stderr, "RESET\n");
|
||
|
__sanitizer_cov_reset();
|
||
|
foo1();
|
||
|
foo2();
|
||
|
bar1();
|
||
|
bar2();
|
||
|
__sanitizer_cov_dump();
|
||
|
// CHECK: RESET
|
||
|
// CHECK-DAG: SanitizerCoverage: ./coverage-reset.cpp{{.*}}.sancov: 2 PCs written
|
||
|
// CHECK-DAG: SanitizerCoverage: ./libcoverage-reset.cpp{{.*}}.sancov: 2 PCs written
|
||
|
|
||
|
fprintf(stderr, "RESET\n");
|
||
|
__sanitizer_cov_reset();
|
||
|
foo1();
|
||
|
bar1();
|
||
|
__sanitizer_cov_dump();
|
||
|
// CHECK: RESET
|
||
|
// CHECK-DAG: SanitizerCoverage: ./coverage-reset.cpp{{.*}}.sancov: 1 PCs written
|
||
|
// CHECK-DAG: SanitizerCoverage: ./libcoverage-reset.cpp{{.*}}.sancov: 1 PCs written
|
||
|
|
||
|
fprintf(stderr, "RESET\n");
|
||
|
__sanitizer_cov_reset();
|
||
|
foo1();
|
||
|
foo2();
|
||
|
__sanitizer_cov_dump();
|
||
|
// CHECK: RESET
|
||
|
// CHECK: SanitizerCoverage: ./coverage-reset.cpp{{.*}}.sancov: 2 PCs written
|
||
|
|
||
|
fprintf(stderr, "RESET\n");
|
||
|
__sanitizer_cov_reset();
|
||
|
bar1();
|
||
|
bar2();
|
||
|
__sanitizer_cov_dump();
|
||
|
// CHECK: RESET
|
||
|
// CHECK: SanitizerCoverage: ./libcoverage-reset.cpp{{.*}}.sancov: 2 PCs written
|
||
|
|
||
|
fprintf(stderr, "RESET\n");
|
||
|
__sanitizer_cov_reset();
|
||
|
// CHECK: RESET
|
||
|
|
||
|
bar2();
|
||
|
// CHECK: SanitizerCoverage: ./libcoverage-reset.cpp{{.*}}.sancov: 1 PCs written
|
||
|
}
|
||
|
#endif
|