[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-ar / thin-archive-relative-path.test
blob33ffd037066282df27875fed136c4059a1c88f4b
1 RUN: rm -rf %t && mkdir -p %t/foo %t/bar 
3 RUN: yaml2obj %S/Inputs/elf.yaml -o %t/foo/elf.o
4 RUN: cp %t/foo/elf.o %t/bar/elf.o
5 RUN: cd %t
7 Test a case in which CWD does not contain the archive, ensure replacement behaves as expected
9 RUN: llvm-ar cr --thin foo/lib.a foo/elf.o
10 RUN: llvm-ar t foo/lib.a  | FileCheck %s --check-prefix=FOO --implicit-check-not {{.}}
12 RUN: llvm-ar cr --thin foo/lib.a bar/elf.o
13 RUN: llvm-ar t foo/lib.a  | FileCheck %s --check-prefixes=FOO,BAR --implicit-check-not {{.}}
15 RUN: llvm-ar cr --thin foo/lib.a foo/elf.o
16 RUN: llvm-ar t foo/lib.a  | FileCheck %s --check-prefixes=FOO,BAR --implicit-check-not {{.}}
18 FOO: foo/elf.o
19 BAR: foo/../bar/elf.o