[lit] Add argument check: --timeout must be non-negative integer
[llvm-core.git] / test / tools / yaml2obj / duplicate-section-names.test
blob65d3de4c30391c7b150f0ef15ba5ed23ce268959
1 ## Check that yaml2obj is able to produce an object from YAML
2 ## containing sections with duplicate names (but different name suffixes).
4 # RUN: yaml2obj --docnum=1 %s -o %t1
5 # RUN: llvm-readobj -s %t1 | FileCheck %s --check-prefix=CASE1
7 # CASE1: Name: .foo1 (
8 # CASE1: Name: .foo (
9 # CASE1: Name: .foo (
10 # CASE1: Name: .foo2 (
12 --- !ELF
13 FileHeader:
14   Class:   ELFCLASS64
15   Data:    ELFDATA2LSB
16   Type:    ET_REL
17   Machine: EM_X86_64
18 Sections:
19   - Name: .foo1
20     Type: SHT_PROGBITS
21   - Name: .foo
22     Type: SHT_PROGBITS
23   - Name: '.foo [1]'
24     Type: SHT_PROGBITS
25   - Name: .foo2
26     Type: SHT_PROGBITS
28 ## Check that yaml2obj reports an error in case we have
29 ## sections with equal names and suffixes.
31 # RUN: not yaml2obj --docnum=2 %s 2>&1 | FileCheck %s --check-prefix=CASE2
32 # CASE2: error: repeated section name: '.foo [1]' at YAML section number 2
33 # CASE2: error: repeated section name: '.foo [1]' at YAML section number 3
35 --- !ELF
36 FileHeader:
37   Class:   ELFCLASS64
38   Data:    ELFDATA2LSB
39   Type:    ET_REL
40   Machine: EM_X86_64
41 Sections:
42   - Name: '.foo [1]'
43     Type: SHT_PROGBITS
44   - Name: '.foo [1]'
45     Type: SHT_PROGBITS
46   - Name: '.foo [1]'
47     Type: SHT_PROGBITS
49 ## Check that yaml2obj reports an error in case we have
50 ## symbols without suffixes in the names and their
51 ## names are equal.
53 # RUN: not yaml2obj --docnum=3 %s 2>&1 | FileCheck %s --check-prefix=CASE3
54 # CASE3: error: repeated section name: '.foo' at YAML section number 2
56 --- !ELF
57 FileHeader:
58   Class:   ELFCLASS64
59   Data:    ELFDATA2LSB
60   Type:    ET_REL
61   Machine: EM_X86_64
62 Sections:
63   - Name: .foo
64     Type: SHT_PROGBITS
65   - Name: .foo
66     Type: SHT_PROGBITS
68 ## Check that yaml2obj can produce an object when symbols are defined
69 ## relative to sections with duplicate names (but different name suffixes).
71 # RUN: yaml2obj --docnum=4 %s -o %t4
72 # RUN: llvm-readobj -s -t %t4 | FileCheck %s --check-prefix=CASE4
74 # CASE4:      Section {
75 # CASE4:       Index: 1
76 # CASE4-NEXT:  Name: .foo
77 # CASE4:       Index: 2
78 # CASE4-NEXT:  Name: .foo
80 # CASE4:      Symbol {
81 # CASE4:       Name: foo
82 # CASE4-NEXT:  Value:
83 # CASE4-NEXT:  Size:
84 # CASE4-NEXT:  Binding:
85 # CASE4-NEXT:  Type:
86 # CASE4-NEXT:  Other:
87 # CASE4-NEXT:  Section: .foo (0x1)
88 # CASE4:       Name: bar
89 # CASE4-NEXT:  Value:
90 # CASE4-NEXT:  Size:
91 # CASE4-NEXT:  Binding:
92 # CASE4-NEXT:  Type:
93 # CASE4-NEXT:  Other:
94 # CASE4-NEXT:  Section: .foo (0x2)
96 --- !ELF
97 FileHeader:
98   Class:   ELFCLASS64
99   Data:    ELFDATA2LSB
100   Type:    ET_REL
101   Machine: EM_X86_64
102 Sections:
103   - Name: .foo
104     Type: SHT_PROGBITS
105   - Name: '.foo [1]'
106     Type: SHT_PROGBITS
107 Symbols:
108   - Name:    foo
109     Section: .foo
110   - Name:    bar
111     Section: '.foo [1]'
113 ## Check that yaml2obj can produce SHT_GROUP sections that
114 ## reference sections and symbols with name suffixes.
116 # RUN: yaml2obj --docnum=5 %s -o %t5
117 # RUN: llvm-readobj --elf-section-groups %t5 | FileCheck %s --check-prefix=CASE5
119 # CASE5:      Groups {
120 # CASE5-NEXT:   Group {
121 # CASE5-NEXT:     Name: .group (1)
122 # CASE5-NEXT:     Index: 1
123 # CASE5-NEXT:     Link: 5
124 # CASE5-NEXT:     Info: 1
125 # CASE5-NEXT:     Type: COMDAT (0x1)
126 # CASE5-NEXT:     Signature: foo
127 # CASE5-NEXT:     Section(s) in group [
128 # CASE5-NEXT:       .text.foo (2)
129 # CASE5-NEXT:     ]
130 # CASE5-NEXT:   }
131 # CASE5-NEXT:   Group {
132 # CASE5-NEXT:     Name: .group (1)
133 # CASE5-NEXT:     Index: 3
134 # CASE5-NEXT:     Link: 5
135 # CASE5-NEXT:     Info: 2
136 # CASE5-NEXT:     Type: COMDAT (0x1)
137 # CASE5-NEXT:     Signature: foo
138 # CASE5-NEXT:     Section(s) in group [
139 # CASE5-NEXT:       .text.foo (4)
140 # CASE5-NEXT:     ]
141 # CASE5-NEXT:   }
142 # CASE5-NEXT: }
144 --- !ELF
145 FileHeader:
146   Class:   ELFCLASS64
147   Data:    ELFDATA2LSB
148   Type:    ET_REL
149   Machine: EM_X86_64
150 Sections:
151   - Name: .group
152     Type: SHT_GROUP
153     Link: .symtab
154     Info: foo
155     Members:
156       - SectionOrType: GRP_COMDAT
157       - SectionOrType: .text.foo
158   - Name: .text.foo
159     Type: SHT_PROGBITS
160   - Name: '.group [1]'
161     Type: SHT_GROUP
162     Link: .symtab
163     Info: 'foo [1]'
164     Members:         
165       - SectionOrType: GRP_COMDAT
166       - SectionOrType: '.text.foo [1]'
167   - Name: '.text.foo [1]'
168     Type: SHT_PROGBITS
169 Symbols:
170   - Name:    foo
171     Section: .text.foo
172   - Name:    'foo [1]'
173     Section: '.text.foo [1]'