[lit] Remove LitTestCase
[llvm-complete.git] / test / Object / archive-pad.test
blob343f51ef60afb38ded3640129f499819b1c0b7f4
1 Test that only the darwin format needs to modify archive members to
2 avoid a ld64 bug.
4 RUN: echo foo > %t.o
6 RUN: rm -f %t.a
7 RUN: llvm-ar -format=bsd rc %t.a %t.o
8 RUN: llvm-ar p %t.a > %t.bsd.o
9 RUN: cmp %t.bsd.o %t.o
11 RUN: rm -f %t.a
12 RUN: llvm-ar -format=gnu rc %t.a %t.o
13 RUN: llvm-ar p %t.a > %t.gnu.o
14 RUN: cmp %t.gnu.o %t.o
16 RUN: rm -f %t.a
17 RUN: llvm-ar -format=darwin rc %t.a %t.o
18 RUN: llvm-ar p %t.a > %t.darwin.o
19 RUN: not cmp %t.darwin.o %t.o