[lit] Add argument check: --timeout must be non-negative integer
[llvm-core.git] / test / tools / llvm-ar / flatten-thin-archive.test
bloba80edd9d50c766cb70f7c5c239d5bfb14f418f60
1 # This test creates a thin archive that contains a thin archive, a regular
2 # archive, and a file.
4 # The inner thin archive should be flattened, but the regular archive should
5 # not. The order of members in the archive should match the input order, with
6 # flattened members appearing together.
8 RUN: touch %t-a.txt %t-b.txt %t-c.txt %t-d.txt %t-e.txt
9 RUN: rm -f %t-a-plus-b.a %t-d-plus-e.a %t.a
10 RUN: llvm-ar rcsT %t-a-plus-b.a %t-a.txt %t-b.txt
11 RUN: llvm-ar rcs %t-d-plus-e.a %t-d.txt %t-e.txt
12 RUN: llvm-ar rcsT %t.a %t-a-plus-b.a %t-c.txt %t-d-plus-e.a
13 RUN: llvm-ar t %t.a | FileCheck %s
15 CHECK:      a.txt
16 CHECK-NEXT: b.txt
17 CHECK-NEXT: c.txt
18 CHECK-NEXT: -d-plus-e.a