• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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