blob: 94f6cd8252f38e3c584d9b05da70e99956c92dca [file] [log] [blame]
Stephen Hines2d1fdb22014-05-28 23:58:16 -07001// RUN: %clangxx_msan -m64 -O0 %s -o %t && %run %t
2
3#include <sys/types.h>
4#include <grp.h>
5
6int main(void) {
7 initgroups("root", 0);
8 // The above fails unless you are root. Does not matter, MSan false positive
9 // (which we are testing for) happens anyway.
10 return 0;
11}