blob: cb656d3b47fef4d563927bc3061b36a1cb480d29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## Don't make symlinks on Windows.
# UNSUPPORTED: system-windows
# RUN: rm -rf %t
# RUN: mkdir %t
# RUN: ln -s llvm-ar %t/llvm-ar-9
# RUN: ln -s llvm-ar %t/ar.exe
# RUN: ln -s llvm-ar %t/arm-pokymllib32-linux-gnueabi-llvm-ar-9
# RUN: llvm-ar h | FileCheck %s
# RUN: %t/llvm-ar-9 h | FileCheck %s
# RUN: %t/ar.exe h | FileCheck %s
# RUN: %t/arm-pokymllib32-linux-gnueabi-llvm-ar-9 h | FileCheck %s
# CHECK: USAGE: llvm-ar
|