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
13 lines
320 B
Plaintext
13 lines
320 B
Plaintext
# XFAIL: system-aix
|
|
## Test Display of empty archives.
|
|
|
|
# RUN: rm -rf %t && mkdir -p %t
|
|
|
|
## Display empty archive:
|
|
# RUN: llvm-ar cr %t/empty.a
|
|
# RUN: llvm-ar tv %t/empty.a 2>&1 | count 0
|
|
|
|
## Display empty thin archive:
|
|
# RUN: llvm-ar Trc %t/thin-archive-empty.a
|
|
# RUN: llvm-ar tv %t/thin-archive-empty.a 2>&1 | count 0
|