mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 08:36:07 +00:00

SUMMARY 1. Enable supporting the write operation of big archive. 2. the first commit come from https://reviews.llvm.org/D104367 3. refactor the first commit and implement writing symbol table. 4. fixed the bugs and add more test cases in the second commit. Reviewers: James Henderson Differential Revision: https://reviews.llvm.org/D123949
10 lines
230 B
Plaintext
10 lines
230 B
Plaintext
## 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
|