brintos

brintos / llvm-project-archived public Read only

0
0
Text · 451 B · a24c8d3 Raw
20 lines · plain
1Test that only the darwin format needs to modify archive members to2avoid a ld64 bug.3 4RUN: echo foo > %t.o5 6RUN: rm -f %t.a7RUN: llvm-ar --format=bsd rc %t.a %t.o8RUN: llvm-ar p %t.a > %t.bsd.o9RUN: cmp %t.bsd.o %t.o10 11RUN: rm -f %t.a12RUN: llvm-ar --format=gnu rc %t.a %t.o13RUN: llvm-ar p %t.a > %t.gnu.o14RUN: cmp %t.gnu.o %t.o15 16RUN: rm -f %t.a17RUN: llvm-ar --format=darwin rc %t.a %t.o18RUN: llvm-ar p %t.a > %t.darwin.o19RUN: not cmp %t.darwin.o %t.o20