Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-dwp / X86 / search_dwos.test
blobbf45bba60481e33e9b95ca207f3db765f1aebcb8
1 RUN: rm -rf %t
2 RUN: mkdir %t
3 RUN: cd %t
4 RUN: cp %p/../Inputs/search_dwos/a.dwo a.dwo
5 RUN: cp %p/../Inputs/search_dwos/b.dwo b.dwo
6 RUN: cp %p/../Inputs/search_dwos/main main
7 RUN: llvm-dwp -e main -o %t.dwp 
9 Search the DWO from relative path if absolute path is not valid.
10 Build commands for the test binaries:
12 clang++ -Xclang -fdebug-compilation-dir -Xclang "path-not-exists" -g -O0 -gsplit-dwarf a.cpp b.cpp -o main
14 sources:
15 a.cpp:
16   void a() {}
18 b.cpp:
19   void b() {}
20   int main() {
21      return 0;
22   }