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.
12 lines
330 B
12 lines
330 B
## Show that the version for llvm-ar can be printed with either the long flag
|
|
## -version or with the V modifier.
|
|
|
|
RUN: llvm-ar V | FileCheck %s
|
|
RUN: llvm-ar xV | FileCheck %s
|
|
RUN: llvm-ar -V | FileCheck %s
|
|
RUN: llvm-ar -xV | FileCheck %s
|
|
RUN: llvm-ar -version | FileCheck %s
|
|
RUN: llvm-ar --version | FileCheck %s
|
|
|
|
CHECK: version
|