Xamarin Public Jenkins (auto-signing) 468663ddbb Imported Upstream version 6.10.0.49
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
2020-01-16 16:38:04 +00:00

18 lines
503 B
C

// RUN: %clang_msan -O0 %s -o %t && %run %t >%t.out 2>&1
// RUN: %clang_msan -O1 %s -o %t && %run %t >%t.out 2>&1
// RUN: %clang_msan -O2 %s -o %t && %run %t >%t.out 2>&1
// RUN: %clang_msan -O3 %s -o %t && %run %t >%t.out 2>&1
// Test that strdup in C programs is intercepted.
// GLibC headers translate strdup to __strdup at -O1 and higher.
#include <stdlib.h>
#include <string.h>
int main(int argc, char **argv) {
char buf[] = "abc";
char *p = strdup(buf);
if (*p)
exit(0);
return 0;
}