Summary: when run "llvm-ar cr" on AIX OS , it created a gnu archive, it is not desirable in aix OS. instead of creating a gnu archive, the patch will print a unsupport message for llvm-ar big archive write operation in AIX OS. after implement the big archive operation, I will revert the XFAIL: AIX " and "--format=gnu" test cases in the patch. Reviewer : James Henderson, Jinsong Ji Differential Revision: https://reviews.llvm.org/D122746
14 lines
261 B
Plaintext
14 lines
261 B
Plaintext
XFAIL: system-aix
|
|
# Test the use of dash before key letters.
|
|
|
|
RUN: touch %t1.txt
|
|
RUN: touch %t2.txt
|
|
|
|
RUN: rm -f %t.ar
|
|
RUN: llvm-ar s -cr %t.ar %t1.txt
|
|
RUN: llvm-ar -r -s %t.ar %t2.txt -s
|
|
RUN: llvm-ar -t %t.ar | FileCheck %s
|
|
|
|
CHECK: 1.txt
|
|
CHECK-NEXT: 2.txt
|