
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
31 lines
665 B
Plaintext
31 lines
665 B
Plaintext
Test adding a member to a particular position
|
|
|
|
RUN: touch %t.foo
|
|
RUN: touch %t.bar
|
|
RUN: rm -f %t.a
|
|
RUN: llvm-ar rc %t.a %t.foo %t.bar
|
|
RUN: touch %t.zed
|
|
RUN: llvm-ar rca %t.foo %t.a %t.zed
|
|
RUN: llvm-ar t %t.a | FileCheck %s
|
|
|
|
CHECK: .foo
|
|
CHECK-NEXT: .zed
|
|
CHECK-NEXT: .bar
|
|
|
|
RUN: rm -f %t.a
|
|
RUN: llvm-ar rc %t.a %t.zed %t.foo %t.bar
|
|
RUN: llvm-ar t %t.a | FileCheck --check-prefix=CHECK2 %s
|
|
|
|
CHECK2: .zed
|
|
CHECK2-NEXT: .foo
|
|
CHECK2-NEXT: .bar
|
|
|
|
RUN: llvm-ar rca %t.foo %t.a %t.zed
|
|
RUN: llvm-ar t %t.a | FileCheck --check-prefix=CHECK3 %s
|
|
CHECK3: .foo
|
|
CHECK3-NEXT: .zed
|
|
CHECK3-NEXT: .bar
|
|
|
|
RUN: llvm-ar rc %t.a %t.zed
|
|
RUN: llvm-ar t %t.a | FileCheck --check-prefix=CHECK3 %s
|