19 lines · plain
1# Test that llvm-debuginfod-find can perform local directory lookups.2 3# Test depends on POSIX file paths.4UNSUPPORTED: system-windows5 6RUN: mkdir -p %t/a/.build-id7RUN: mkdir -p %t/b/.build-id/00/000000000000008RUN: mkdir -p %t/b/.build-id/01/23456789012345.debug9RUN: mkdir -p %t/b/.build-id/02/2222222222222210RUN: mkdir -p %t/c/.build-id/11RUN: llvm-debuginfod-find \12RUN: --debug-file-directory %t/a \13RUN: --debug-file-directory %t/b \14RUN: --debug-file-directory %t/c \15RUN: --debuginfo 0123456789012345 > %t.out16RUN: FileCheck -DT=%t --match-full-lines --implicit-check-not {{.}} %s < %t.out17 18CHECK: [[T]]/b/.build-id/01/23456789012345.debug19