Lines Matching full:content
99 ## Check we can use the "Content" tag to specify any data for SHT_LLVM_ADDRSIG sections.
102 # RUN: llvm-readobj --sections --section-data %t5 | FileCheck %s --check-prefix=CONTENT
104 # CONTENT: Type: SHT_LLVM_ADDRSIG
105 # CONTENT: Size:
106 # CONTENT-SAME: 5
107 # CONTENT: SectionData (
108 # CONTENT-NEXT: 0000: 11223344 55
109 # CONTENT-NEXT: )
119 Content: "1122334455"
121 ## Check we emit an empty section if neither "Content", "Size" nor "Symbols" were set.
138 ## "Content" and "Symbols" cannot be used together to describe the SHT_LLVM_ADDRSIG section.
140 # RUN: not yaml2obj --docnum=7 %s 2>&1 | FileCheck %s --check-prefix=CONTENT-SYMBOLS
142 # CONTENT-SYMBOLS: "Symbols" cannot be used with "Content" or "Size"
152 Content: ""
173 Content: ""
198 ## Check we can use "Size" and "Content" together to create a SHT_LLVM_ADDRSIG section.
201 # RUN: llvm-readobj --sections --section-data %t10 | FileCheck %s --check-prefix=SIZE-CONTENT
203 # SIZE-CONTENT: Name: .llvm_addrsig_sizegr
204 # SIZE-CONTENT: Size:
205 # SIZE-CONTENT-SAME: 5
206 # SIZE-CONTENT: SectionData (
207 # SIZE-CONTENT-NEXT: 0000: 11223300 00 |
208 # SIZE-CONTENT-NEXT: )
210 # SIZE-CONTENT: Name: .llvm_addrsig_sizeeq
211 # SIZE-CONTENT: Size:
212 # SIZE-CONTENT-SAME: 3
213 # SIZE-CONTENT: SectionData (
214 # SIZE-CONTENT-NEXT: 0000: 112233 |
215 # SIZE-CONTENT-NEXT: )
226 Content: "112233"
230 Content: "112233"
232 ## Check that when "Size" and "Content" are used together, the size
233 ## must be greater than or equal to the content size.
235 # RUN: not yaml2obj --docnum=11 %s 2>&1 | FileCheck %s --check-prefix=SIZE-CONTENT-ERR
237 # SIZE-CONTENT-ERR: error: Section size must be greater than or equal to the content size
248 Content: "1122"
252 # RUN: not yaml2obj --docnum=12 %s 2>&1 | FileCheck %s --check-prefix=CONTENT-SYMBOLS