brintos

brintos / llvm-project-archived public Read only

0
0
Text · 456 B · b9da6b7 Raw
14 lines · plain
1;RUN: rm -rf %t && mkdir -p %t2;RUN: not llvm-ar r %t/test.a . 2>&1 | FileCheck -DMSG=%errc_EISDIR %s3;CHECK: .: [[MSG]]4 5;RUN: rm -f %t/test.a6;RUN: touch %t/a-very-long-file-name7;RUN: llvm-ar r %t/test.a %s %t/a-very-long-file-name8;RUN: llvm-ar r %t/test.a %t/a-very-long-file-name9;RUN: llvm-ar t %t/test.a | FileCheck -check-prefix=MEMBERS %s10;MEMBERS-NOT: /11;MEMBERS: directory.ll12;MEMBERS: a-very-long-file-name13;MEMBERS-NOT: a-very-long-file-name14