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
11 lines
220 B
Plaintext
11 lines
220 B
Plaintext
# XFAIL: system-aix
|
|
## Test the use of "--" on the commandline
|
|
|
|
# RUN: echo contents > %t.txt
|
|
|
|
# RUN: rm -f %t.ar
|
|
# RUN: llvm-ar rc -- %t.ar %t.txt 2>&1 | count 0
|
|
|
|
# RUN: llvm-ar p %t.ar | FileCheck %s
|
|
# CHECK: contents
|