Home | History | Annotate | Download | only in Object
      1 RUN: rm -rf %t
      2 RUN: mkdir -p %t
      3 RUN: cd %t
      4 RUN: mkdir -p foo
      5 RUN: touch foo/test1.o
      6 RUN: touch foo/test2.o
      7 RUN: llvm-ar qcT foo/libtest.a foo/test1.o
      8 RUN: llvm-ar qcT foo/libtest.a foo/test1.o
      9 RUN: llvm-ar qcT foo/libtest.a foo/test2.o
     10 RUN: llvm-ar t foo/libtest.a | FileCheck --match-full-lines %s
     11 
     12 CHECK: foo/test1.o
     13 CHECK: foo/test1.o
     14 CHECK: foo/test2.o
     15 
     16