[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / DebugInfo / symbolize-filter-markup-data.test
blobed7066c7ca7803ad85a71971a03c18131936672f
1 REQUIRES: x86-registered-target
2 RUN: split-file %s %t
3 RUN: mkdir -p %t/.build-id/ab
4 RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %t/asm.s \
5 RUN:   -o %t/.build-id/ab/cdef.debug
6 RUN: llvm-symbolizer --debug-file-directory=%t --filter-markup < %t/input \
7 RUN:   > %t.output 2> %t.err
8 RUN: FileCheck %s --input-file=%t.output --match-full-lines \
9 RUN:   --implicit-check-not {{.}}
10 RUN: FileCheck %s --check-prefix=ERR --input-file=%t.err --match-full-lines
12 CHECK: [[BEGIN:\[{3}]]ELF module #0x0 "a.o"; BuildID=abcdef [0x0-0x4](r),[0x10-0x11](r)[[END:\]{3}]]
13 CHECK: long long byte
14 CHECK: long byte
15 CHECK: [[BEGIN]]data:0x5[[END]]
17 ERR: error: expected 1 field(s); found 0
18 ERR: error: no mmap covers address
20 ;--- input
21 {{{module:0:a.o:elf:abcdef}}}
22 {{{mmap:0:5:load:0:r:0}}}
23 {{{mmap:0x10:2:load:0:r:0x3}}}
24 {{{data:0x0}}} {{{data:0x1}}} {{{data:0x4}}}
25 {{{data:0x10}}} {{{data:0x11}}}
27 {{{data}}}
28 {{{data:0x5}}}
29 ;--- asm.s
30 long:
31   .long 0x11223344
32   .size long, 4
33 byte:
34   .byte 0x42
35   .size byte, 1