You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Test the use of dash before key letters.
|
|
|
|
RUN: touch %t1.txt
|
|
RUN: touch %t2.txt
|
|
|
|
RUN: rm -f %t.ar
|
|
RUN: llvm-ar s -cr %t.ar %t1.txt
|
|
RUN: llvm-ar -r -s %t.ar %t2.txt -s
|
|
RUN: llvm-ar -t %t.ar | FileCheck %s
|
|
|
|
CHECK: 1.txt
|
|
CHECK-NEXT: 2.txt
|