Rafael Espindola | 8fe960e | 2013-06-19 14:58:16 +0000 | [diff] [blame] | 1 | ;RUN: not llvm-ar r %T/test.a . 2>&1 | FileCheck %s |
2 | ;CHECK: . Is a directory | ||||
Rafael Espindola | 122c57c | 2013-06-20 13:41:51 +0000 | [diff] [blame] | 3 | |
4 | ;RUN: rm -f %T/test.a | ||||
5 | ;RUN: touch %T/a-very-long-file-name | ||||
6 | ;RUN: llvm-ar r %T/test.a %s %T/a-very-long-file-name | ||||
7 | ;RUN: llvm-ar t %T/test.a | FileCheck -check-prefix=MEMBERS %s | ||||
8 | ;MEMBERS-NOT: / | ||||
9 | ;MEMBERS: a-very-long-file-name | ||||
10 | ;MEMBERS: directory.ll |