mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
6a91773c9e
llvm-svn: 351256
14 lines
453 B
Plaintext
14 lines
453 B
Plaintext
# Since llvm-ar cannot create thin archives that contain any thin archives,
|
|
# nested-thin-archive.a is a manually constructed thin archive that contains
|
|
# another (unflattened) thin archive.
|
|
# This test ensures that flat archives are recursively flattened.
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: llvm-ar rcsT %t.a %S/Inputs/nested-thin-archive.a %S/Inputs/d.txt
|
|
RUN: llvm-ar t %t.a | FileCheck %s
|
|
|
|
CHECK: a.txt
|
|
CHECK-NEXT: b.txt
|
|
CHECK-NEXT: c.txt
|
|
CHECK-NEXT: d.txt
|