brintos

brintos / llvm-project-archived public Read only

0
0
Text · 453 B · fdd752d Raw
14 lines · plain
1# Since llvm-ar cannot create thin archives that contain any thin archives,2# nested-thin-archive.a is a manually constructed thin archive that contains3# another (unflattened) thin archive.4# This test ensures that flat archives are recursively flattened.5 6RUN: rm -f %t.a7RUN: llvm-ar rcsT %t.a %S/Inputs/nested-thin-archive.a %S/Inputs/d.txt8RUN: llvm-ar t %t.a | FileCheck %s9 10CHECK:      a.txt11CHECK-NEXT: b.txt12CHECK-NEXT: c.txt13CHECK-NEXT: d.txt14