1 // RUN: %clangxx_msan -O0 %s -o %t && %run %t %p
2 // RUN: %clangxx_msan -O3 %s -o %t && %run %t %p
9 int main(int argc
, char *argv
[]) {
12 snprintf(buf
, sizeof(buf
), "%s/%s", argv
[1], "glob_test_root/*c");
15 int res
= glob(buf
, 0, 0, &globbuf
);
16 assert(res
== GLOB_NOMATCH
);
17 assert(globbuf
.gl_pathc
== 0);
18 if (globbuf
.gl_pathv
== 0)