[RISCV] Change func to funct in RISCVInstrInfoXqci.td. NFC (#119669)
[llvm-project.git] / llvm / test / tools / llvm-symbolizer / get-input-file.test
blob50eb05196871867c4aba411007e2d9e79db8edbd
1 # If binary input file is not specified, llvm-symbolizer assumes it is the first
2 # item in the command.
4 # No input items at all. Report an unknown line, but do not produce any output on stderr.
5 RUN: echo | llvm-symbolizer 2>%t.1.err | FileCheck %s --check-prefix=NOSOURCE
6 RUN: FileCheck --input-file=%t.1.err --implicit-check-not={{.}} --allow-empty %s
8 # Only one input item, complain about missing addresses.
9 RUN: llvm-symbolizer "foo" 2>%t.2.err | FileCheck %s --check-prefix=NOSOURCE
10 RUN: FileCheck --input-file=%t.2.err --check-prefix=NOADDR %s
12 # Two items specified, check if the first one is an existing file.
13 RUN: llvm-symbolizer "foo 400" 2>%t.3.err | FileCheck %s --check-prefix=NOSOURCE
14 RUN: FileCheck --input-file=%t.3.err --check-prefix=NOTFOUND -DMSG=%errc_ENOENT %s
16 # FILE: must be followed by a file name.
17 RUN: llvm-symbolizer "FILE:" 2>%t.4.err | FileCheck %s --check-prefix=NOSOURCE
18 RUN: FileCheck --input-file=%t.4.err --check-prefix=MISSING-FILE %s
20 # BUILDID: must be followed by a hash.
21 RUN: llvm-symbolizer "BUILDID:" 2>%t.5.err | FileCheck %s --check-prefix=NOSOURCE
22 RUN: FileCheck --input-file=%t.5.err --check-prefix=MISSING-HASH %s
24 # Wrong build-id.
25 RUN: llvm-symbolizer "BUILDID: foo" 2>%t.6.err | FileCheck %s --check-prefix=NOSOURCE
26 RUN: FileCheck --input-file=%t.6.err --check-prefix=BAD-HASH %s
28 # Unbalanced string quotes in the file name.
29 RUN: llvm-symbolizer "FILE:\"foo" 2>%t.7.err | FileCheck %s --check-prefix=NOSOURCE
30 RUN: FileCheck --input-file=%t.7.err --check-prefix=BAD-QUOTE %s
32 NOSOURCE:      ??
33 NOSOURCE-NEXT: ??:0:0
35 NOADDR: error: 'foo': no module offset has been specified
37 NOTFOUND:  error: 'foo': [[MSG]]
39 MISSING-FILE: error: 'FILE:': must be followed by an input file
41 MISSING-HASH: error: 'BUILDID:': must be followed by a hash
43 BAD-HASH:  error: 'BUILDID: foo': wrong format of build-id
45 BAD-QUOTE: error: 'FILE:"foo': unbalanced quotes in input file name