Lines Matching full:content
55 ## Check that for 32-bit little-endian case we produce the same section content.
78 ## Check they produce the same content.
155 ## Check we can use the "Content" tag to specify any data for SHT_NOTE sections.
158 # RUN: llvm-readobj --sections --section-data %t7 | FileCheck %s --check-prefix=CONTENT
160 # CONTENT: Name: .note.foo
161 # CONTENT: SectionData (
162 # CONTENT-NEXT: 0000: 11223344 55 |
163 # CONTENT-NEXT: )
173 Content: "1122334455"
175 ## Check we emit an empty section if neither "Content", "Size" nor "Notes" were set.
192 ## "Content" and "Notes" cannot be used together to describe the SHT_NOTE section.
194 # RUN: not yaml2obj --docnum=9 %s 2>&1 | FileCheck %s --check-prefix=CONTENT-NOTES
196 # CONTENT-NOTES: error: "Notes" cannot be used with "Content" or "Size"
206 Content: ""
211 # RUN: not yaml2obj --docnum=10 %s 2>&1 | FileCheck %s --check-prefix=CONTENT-NOTES
245 ## Check we can use "Size" and "Content" together to create a SHT_NOTE section.
248 # RUN: llvm-readobj --sections --section-data %t12 | FileCheck %s --check-prefix=SIZE-CONTENT
250 # SIZE-CONTENT: Name: .note.sizegr
251 # SIZE-CONTENT: SectionData (
252 # SIZE-CONTENT-NEXT: 0000: 11223300 00 |
253 # SIZE-CONTENT-NEXT: )
255 # SIZE-CONTENT: Name: .note.sizeeq
256 # SIZE-CONTENT: SectionData (
257 # SIZE-CONTENT-NEXT: 0000: 112233 |
258 # SIZE-CONTENT-NEXT: )
269 Content: "112233"
273 Content: "112233"
275 ## Check that when "Size" and "Content" are used together, the size
276 ## must be greater than or equal to the content size.
278 # RUN: not yaml2obj --docnum=13 %s 2>&1 | FileCheck %s --check-prefix=SIZE-CONTENT-ERR
279 # SIZE-CONTENT-ERR: error: Section size must be greater than or equal to the content size
290 Content: "1122"
294 # RUN: not yaml2obj --docnum=14 %s 2>&1 | FileCheck %s --check-prefix=CONTENT-NOTES