Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions llvm/test/tools/llvm-ar/extract.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
## Test extract operation.
# XFAIL: target={{.*}}-darwin{{.*}}

# RUN: rm -rf %t && mkdir -p %t/extracted/

Expand All @@ -9,7 +8,7 @@

# RUN: echo filea > %t/a.txt
# RUN: echo fileb > %t/b.txt
# RUN: llvm-ar rc %t/archive.a %t/a.txt %t/b.txt
# RUN: llvm-ar rc --format=gnu %t/archive.a %t/a.txt %t/b.txt

## Single member:
# RUN: cd %t/extracted && llvm-ar xv %t/archive.a a.txt | FileCheck %s --check-prefix=A
Expand Down
3 changes: 1 addition & 2 deletions llvm/test/tools/llvm-ar/print.test
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
## Test Print output
# XFAIL: target={{.*}}-darwin{{.*}}

# RUN: rm -rf %t && mkdir -p %t
# RUN: echo file1 > %t/1.txt
# RUN: echo file2 > %t/2.txt
# RUN: echo file3 > %t/3.txt

# RUN: llvm-ar -rc %t/archive.a %t/1.txt %t/2.txt %t/3.txt
# RUN: llvm-ar -rc --format=gnu %t/archive.a %t/1.txt %t/2.txt %t/3.txt

## Print empty archive:
# RUN: llvm-ar --format=gnu cr %t/empty.a
Expand Down