File: tool-name.test

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (43 lines) | stat: -rw-r--r-- 1,728 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## Don't make symlinks on Windows.
# UNSUPPORTED: system-windows, llvm-driver

# RUN: rm -rf %t
# RUN: mkdir %t

# RUN: ln -s llvm-objcopy %t/llvm-objcopy-11.exe
# RUN: ln -s llvm-objcopy %t/powerpc64-unknown-freebsd13-objcopy

# RUN: llvm-objcopy --help | FileCheck --check-prefix=OBJCOPY %s
# RUN: %t/llvm-objcopy-11.exe --help | FileCheck --check-prefix=OBJCOPY %s
# RUN: %t/powerpc64-unknown-freebsd13-objcopy --help | FileCheck --check-prefix=OBJCOPY %s

# OBJCOPY: OVERVIEW: llvm-objcopy tool

# RUN: ln -s llvm-strip %t/strip.exe
# RUN: ln -s llvm-strip %t/gnu-llvm-strip-10

# RUN: llvm-strip --help | FileCheck --check-prefix=STRIP %s
# RUN: %t/strip.exe --help | FileCheck --check-prefix=STRIP %s
# RUN: %t/gnu-llvm-strip-10 --help | FileCheck --check-prefix=STRIP %s

# STRIP: OVERVIEW: llvm-strip tool

## This driver emulates install_name_tool on macOS.
# RUN: ln -s llvm-install-name-tool %t/llvm-install-name-tool-10
# RUN: ln -s llvm-install-name-tool %t/install_name_tool.exe

# RUN: llvm-install-name-tool --help | FileCheck --check-prefix=INSTALL %s
# RUN: %t/llvm-install-name-tool-10 --help | FileCheck --check-prefix=INSTALL %s
# RUN: %t/install_name_tool.exe --help | FileCheck --check-prefix=INSTALL %s

# INSTALL: OVERVIEW: llvm-install-name-tool tool

## This driver emulates bitcode_strip on macOS.
# RUN: ln -s llvm-bitcode-strip %t/llvm-bitcode-strip-10
# RUN: ln -s llvm-bitcode-strip %t/bitcode_strip.exe

# RUN: llvm-bitcode-strip --help | FileCheck --check-prefix=BITCODE-STRIP %s
# RUN: %t/llvm-bitcode-strip-10 --help | FileCheck --check-prefix=BITCODE-STRIP %s
# RUN: %t/bitcode_strip.exe --help | FileCheck --check-prefix=BITCODE-STRIP %s

# BITCODE-STRIP: OVERVIEW: llvm-bitcode-strip tool