1Test that only the darwin format needs to modify archive members to 2avoid a ld64 bug. 3 4RUN: echo foo > %t.o 5 6RUN: rm -f %t.a 7RUN: llvm-ar --format=bsd rc %t.a %t.o 8RUN: llvm-ar p %t.a > %t.bsd.o 9RUN: cmp %t.bsd.o %t.o 10 11RUN: rm -f %t.a 12RUN: llvm-ar --format=gnu rc %t.a %t.o 13RUN: llvm-ar p %t.a > %t.gnu.o 14RUN: cmp %t.gnu.o %t.o 15 16RUN: rm -f %t.a 17RUN: llvm-ar --format=darwin rc %t.a %t.o 18RUN: llvm-ar p %t.a > %t.darwin.o 19RUN: not cmp %t.darwin.o %t.o 20