mirror of
https://github.com/RPCSX/llvm.git
synced 2026-01-31 01:05:23 +01:00
Change the dynamic files to static in the hope that it will actually fix the transient errors that Ive been unable to reproduce. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286891 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
374 B
Plaintext
13 lines
374 B
Plaintext
RUN: rm -f %T/inner.ar
|
|
RUN: llvm-ar -format gnu crs %T/inner.a %S/Inputs/abcd
|
|
RUN: rm -f %T/outer.ar
|
|
RUN: llvm-ar -format gnu crs %T/outer.a %T/inner.a
|
|
RUN: llvm-strings %T/outer.a | FileCheck %s
|
|
|
|
CHECK: !<arch>
|
|
CHECK: inner.a/ 0 0 0 644 72 `
|
|
CHECK: !<arch>
|
|
CHECK: abcd/ 0 0 0 644 4 `
|
|
CHECK: abcd
|
|
|