2014-05-01 05:34:17 +08:00
|
|
|
// RUN: %clangxx_msan -m64 -O0 -g %s -o %t && %run %t >%t.out 2>&1
|
2014-04-30 17:50:30 +08:00
|
|
|
// RUN: FileCheck %s < %t.out
|
|
|
|
|
2014-05-01 05:34:17 +08:00
|
|
|
// RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O0 -g %s -o %t && %run %t >%t.out 2>&1
|
2014-04-30 17:50:30 +08:00
|
|
|
// RUN: FileCheck %s < %t.out
|
|
|
|
|
2014-05-01 05:34:17 +08:00
|
|
|
// RUN: %clangxx_msan -fsanitize-memory-track-origins=2 -m64 -O0 -g %s -o %t && %run %t >%t.out 2>&1
|
2014-04-30 17:50:30 +08:00
|
|
|
// RUN: FileCheck %s < %t.out
|
|
|
|
|
|
|
|
#include <sanitizer/msan_interface.h>
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
char *p = new char[16];
|
|
|
|
__msan_dump_shadow(p, 5);
|
|
|
|
delete[] p;
|
|
|
|
const char *q = "abc";
|
|
|
|
__msan_dump_shadow(q, 3);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: ff ff ff ff ff
|
|
|
|
// CHECK: 00 00 00
|