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
16 lines
477 B
LLVM
16 lines
477 B
LLVM
; XFAIL: system-aix
|
|
|
|
;RUN: rm -rf %t && mkdir -p %t
|
|
;RUN: not llvm-ar r %t/test.a . 2>&1 | FileCheck -DMSG=%errc_EISDIR %s
|
|
;CHECK: .: [[MSG]]
|
|
|
|
;RUN: rm -f %t/test.a
|
|
;RUN: touch %t/a-very-long-file-name
|
|
;RUN: llvm-ar r %t/test.a %s %t/a-very-long-file-name
|
|
;RUN: llvm-ar r %t/test.a %t/a-very-long-file-name
|
|
;RUN: llvm-ar t %t/test.a | FileCheck -check-prefix=MEMBERS %s
|
|
;MEMBERS-NOT: /
|
|
;MEMBERS: directory.ll
|
|
;MEMBERS: a-very-long-file-name
|
|
;MEMBERS-NOT: a-very-long-file-name
|