xref: /llvm-project/llvm/test/tools/llvm-ar/dash-before-letter.test (revision fe3b621f05e706fb04dec121c136b6de82a9e277)
1# Test the use of dash before key letters.
2
3RUN: touch %t1.txt
4RUN: touch %t2.txt
5
6RUN: rm -f %t.ar
7RUN: llvm-ar s -cr %t.ar %t1.txt
8RUN: llvm-ar -r -s %t.ar %t2.txt -s
9RUN: llvm-ar -t %t.ar | FileCheck %s
10
11CHECK:      1.txt
12CHECK-NEXT: 2.txt
13