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

15 lines
281 B
C++

// RUN: %clangxx_msan -m64 -O0 -g %s -o %t && %run %t
#include <assert.h>
#include <sys/timeb.h>
#include <sanitizer/msan_interface.h>
int main(void) {
struct timeb tb;
int res = ftime(&tb);
assert(!res);
assert(__msan_test_shadow(&tb, sizeof(tb)) == -1);
return 0;
}