| 1 | // RUN: %clangxx_msan -O0 %s -o %t && %run %t %p 2>&1 | FileCheck %s |
| 2 | // RUN: %clangxx_msan -O0 -D_FILE_OFFSET_BITS=64 %s -o %t && %run %t %p 2>&1 | FileCheck %s |
| 3 | // RUN: %clangxx_msan -O3 %s -o %t && %run %t %p 2>&1 | FileCheck %s |
| 4 | |
| 5 | #include <assert.h> |
| 6 | #include <glob.h> |
| 7 | #include <stdio.h> |
| 8 | #include <string.h> |
| 9 | #include <errno.h> |
| 10 | |
| 11 | int main(int argc, char *argv[]) { |
| 12 | assert(argc == 2); |
| 13 | char buf[1024]; |
| 14 | snprintf(s: buf, maxlen: sizeof(buf), format: "%s/%s" , argv[1], "glob_test_root/*a" ); |
| 15 | |
| 16 | glob_t globbuf; |
| 17 | int res = glob(pattern: buf, flags: 0, errfunc: 0, pglob: &globbuf); |
| 18 | |
| 19 | printf(format: "%d %s\n" , errno, strerror(errno)); |
| 20 | assert(res == 0); |
| 21 | assert(globbuf.gl_pathc == 2); |
| 22 | printf(format: "%zu\n" , strlen(s: globbuf.gl_pathv[0])); |
| 23 | printf(format: "%zu\n" , strlen(s: globbuf.gl_pathv[1])); |
| 24 | printf(format: "PASS\n" ); |
| 25 | // CHECK: PASS |
| 26 | return 0; |
| 27 | } |
| 28 | |