Lines Matching full:content
3 ## Test the following cases when the .stack_sizes Content field is specified:
5 ## a valid section content.
7 ## a broken (truncated) section content.
9 ## empty section content.
14 ## Case 1: valid content.
33 ## Case 2: truncated content.
40 ## Case 3: empty content.
54 Content: "100000000000000020"
58 Content: "1000000000000000"
62 Content: ""
146 ## Check we can't use both "Content" and "Entries" tags at the same time.
148 # RUN: not yaml2obj --docnum=5 %s 2>&1 | FileCheck %s --check-prefix=ENTRIES-AND-CONTENT
150 # ENTRIES-AND-CONTENT: error: "Entries" cannot be used with "Content" or "Size"
160 Content: "00"
165 ## Check we emit an empty section if neither "Content", "Size" nor "Entries" were set.
186 # ENTRIES-AND-SIZE: error: "Entries" cannot be used with "Content" or "Size"
224 ## Check we can use "Size" and "Content" together to create .stack_sizes section.
227 # RUN: llvm-readobj --sections --section-data %t9 | FileCheck %s --check-prefix=SIZE-CONTENT
229 # SIZE-CONTENT: Name: .stack_sizes
230 # SIZE-CONTENT: Size:
231 # SIZE-CONTENT-SAME: 5
232 # SIZE-CONTENT: SectionData (
233 # SIZE-CONTENT-NEXT: 0000: 11223300 00 |
234 # SIZE-CONTENT-NEXT: )
245 Content: "112233"
247 # RUN: not yaml2obj --docnum=10 %s 2>&1 | FileCheck %s --check-prefix=SIZE-CONTENT-ERR
249 # SIZE-CONTENT-ERR: error: Section size must be greater than or equal to the content size
260 Content: "1122"