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
250 B
Plaintext
11 lines
250 B
Plaintext
# XFAIL: system-aix
|
|
## Test that --plugin is ignored.
|
|
|
|
# RUN: rm -f %t.a
|
|
# RUN: touch %t.txt
|
|
# RUN: llvm-ar rc %t.a %t.txt
|
|
# RUN: llvm-ar --plugin ignore t %t.a | FileCheck %s
|
|
# RUN: llvm-ar t --plugin=ignore %t.a | FileCheck %s
|
|
|
|
# CHECK: {{.*}}.txt
|