forked from OSchip/llvm-project
14 lines
270 B
Plaintext
14 lines
270 B
Plaintext
|
Test adding a member to a particular position
|
||
|
|
||
|
RUN: touch %t.foo
|
||
|
RUN: touch %t.bar
|
||
|
RUN: rm -f %t.a
|
||
|
RUN: llvm-ar rc %t.a %t.foo %t.bar
|
||
|
RUN: touch %t.zed
|
||
|
RUN: llvm-ar rca %t.foo %t.a %t.zed
|
||
|
RUN: llvm-ar t %t.a | FileCheck %s
|
||
|
|
||
|
CHECK: .foo
|
||
|
CHECK-NEXT: .zed
|
||
|
CHECK-NEXT: .bar
|