reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
// Test that no data is collected without a runtime flag.
//
// RUN: rm -rf %t-dir
// RUN: mkdir -p %t-dir
//
// RUN: %clangxx_asan -fsanitize-coverage=func %s -o %t
//
// RUN: %env_asan_opts=coverage_direct=0:coverage_dir='"%t-dir"':verbosity=1 %run %t
// RUN: not %sancov print %t-dir/*.sancov 2>&1
//
// UNSUPPORTED: android

int main(int argc, char **argv) {
  return 0;
}