reference, declaration → definition 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 lsan reports a proper error when running under strace. // REQUIRES: strace // RUN: %clangxx_lsan %s -o %t // RUN: not strace -o /dev/null %run %t 2>&1 | FileCheck %s #include <stdio.h> #include <stdlib.h> static volatile void *sink; int main() { sink = malloc(42); } // CHECK: LeakSanitizer has encountered a fatal error // CHECK: HINT: LeakSanitizer does not work under ptrace (strace, gdb, etc) |