blob: 56c974e73dff2c19a3f93e67ee64119dd38a1c02 (
plain)
1
2
3
4
5
6
7
8
|
# Check that the output of llvm-nm -V (and --version) contains the text
# "GNU" somewhere, to let libtool know that it is compatible with GNU nm.
# Also check that it contains the LLVM version.
RUN: llvm-nm -V | FileCheck %s
RUN: llvm-nm --version | FileCheck %s
CHECK: GNU
CHECK: LLVM version
|