Home | History | Annotate | Download | only in Object
      1 REQUIRES: shell
      2 
      3 RUN: mkdir -p %t
      4 RUN: cd %t
      5 RUN: rm -rf foo
      6 RUN: echo foo > foo
      7 RUN: rm -f test.a
      8 RUN: llvm-ar rc          test.a foo
      9 RUN: rm foo
     10 RUN: mkdir foo
     11 RUN: not llvm-ar x test.a foo 2>&1 | FileCheck %s
     12 
     13 CHECK: foo: Is a directory
     14