Home | History | Annotate | Download | only in Object
      1 Test the 'd' operation in llvm-ar
      2 
      3 REQUIRES: shell
      4 
      5 RUN: cd %T
      6 
      7 RUN: rm -f %t.a
      8 RUN: cp %p/Inputs/GNU.a %t.a
      9 RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc
     10 RUN: llvm-ar t %t.a | FileCheck %s
     11 
     12 RUN: rm -f %t.a
     13 RUN: cp %p/Inputs/MacOSX.a %t.a
     14 RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc
     15 RUN: llvm-ar t %t.a | FileCheck %s
     16 
     17 RUN: rm -f %t.a
     18 RUN: cp %p/Inputs/SVR4.a %t.a
     19 RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc
     20 RUN: llvm-ar t %t.a | FileCheck %s
     21 
     22 RUN: rm -f %t.a
     23 RUN: cp %p/Inputs/xpg4.a %t.a
     24 RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc
     25 RUN: llvm-ar t %t.a | FileCheck %s
     26 
     27 
     28 CHECK: evenlen
     29 CHECK-NEXT: oddlen
     30 CHECK-NEXT: IsNAN.o
     31