blob: 307f0709a796c49007c36c352f1e8a7cde6933e6 [file] [log] [blame]
Rafael Espindolafcc3a1a2013-07-19 21:23:28 +00001Test adding a member to a particular position
2
3RUN: touch %t.foo
4RUN: touch %t.bar
5RUN: rm -f %t.a
6RUN: llvm-ar rc %t.a %t.foo %t.bar
7RUN: touch %t.zed
8RUN: llvm-ar rca %t.foo %t.a %t.zed
9RUN: llvm-ar t %t.a | FileCheck %s
10
11CHECK: .foo
12CHECK-NEXT: .zed
13CHECK-NEXT: .bar