[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / Object / ar-create.test
blob07c9ba4373590b0d3beeb9879fc55c0aa7158549
1 Test which operations create an archive and which don't.
3 RUN: touch %t
4 RUN: rm -f %t.foo.a
5 RUN: not llvm-ar p %t.foo.a %t 2>&1 | FileCheck %s
6 RUN: not llvm-ar d %t.foo.a %t 2>&1 | FileCheck %s
7 RUN: not llvm-ar m %t.foo.a %t 2>&1 | FileCheck %s
8 RUN: not llvm-ar t %t.foo.a %t 2>&1 | FileCheck %s
9 RUN: not llvm-ar x %t.foo.a %t 2>&1 | FileCheck %s
11 RUN: llvm-ar q %t.foo.a %t 2>&1 | FileCheck --check-prefix=CREATE %s
12 RUN: rm -f %t.foo.a
13 RUN: llvm-ar r %t.foo.a %t 2>&1 | FileCheck --check-prefix=CREATE %s
14 RUN: rm -f %t.foo.a
16 CHECK: llvm-ar{{(.exe|.EXE)?}}: error: unable to load '{{[^']+}}.foo.a':
17 CREATE: creating {{.*}}.foo.a