mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
aad52dfef9
in parallel. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186083 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
656 B
Plaintext
31 lines
656 B
Plaintext
Test the 'd' operation in llvm-ar
|
|
|
|
REQUIRES: shell
|
|
|
|
RUN: cd %T
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: cp %p/Inputs/GNU.a %t.a
|
|
RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc
|
|
RUN: llvm-ar t %t.a | FileCheck %s
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: cp %p/Inputs/MacOSX.a %t.a
|
|
RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc
|
|
RUN: llvm-ar t %t.a | FileCheck %s
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: cp %p/Inputs/SVR4.a %t.a
|
|
RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc
|
|
RUN: llvm-ar t %t.a | FileCheck %s
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: cp %p/Inputs/xpg4.a %t.a
|
|
RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc
|
|
RUN: llvm-ar t %t.a | FileCheck %s
|
|
|
|
|
|
CHECK: evenlen
|
|
CHECK-NEXT: oddlen
|
|
CHECK-NEXT: IsNAN.o
|