Greg Fitzgerald b8aae5405b Add %run to all lit tests
llvm-svn: 207709
2014-04-30 21:34:17 +00:00

11 lines
280 B
C++

// Check that user may include ASan interface header.
// RUN: %clang_asan %s -o %t && %run %t
// RUN: %clang_asan -x c %s -o %t && %run %t
// RUN: %clang %s -o %t && %run %t
// RUN: %clang -x c %s -o %t && %run %t
#include <sanitizer/asan_interface.h>
int main() {
return 0;
}