12 lines
235 B
Text
12 lines
235 B
Text
|
RUN: mkdir -p %t
|
||
|
RUN: cd %t
|
||
|
RUN: rm -rf foo
|
||
|
RUN: echo foo > foo
|
||
|
RUN: rm -f test.a
|
||
|
RUN: llvm-ar rc test.a foo
|
||
|
RUN: rm foo
|
||
|
RUN: mkdir foo
|
||
|
RUN: not llvm-ar x test.a foo 2>&1 | FileCheck -DMSG=%errc_EISDIR %s
|
||
|
|
||
|
CHECK: foo: [[MSG]]
|