Lines Matching full:content

120 ## Check we can use "Content" to describe the content.
124 # RUN: llvm-readobj --sections --section-data %t2 | FileCheck %s --check-prefix=CONTENT
126 # CONTENT: Name: .gnu.version_d
127 # CONTENT-NEXT: Type: SHT_GNU_verdef
128 # CONTENT-NEXT: Flags [ (0x2)
129 # CONTENT-NEXT: SHF_ALLOC (0x2)
130 # CONTENT-NEXT: ]
131 # CONTENT-NEXT: Address: 0x0
132 # CONTENT-NEXT: Offset: 0x40
133 # CONTENT-NEXT: Size: 3
134 # CONTENT-NEXT: Link: 0
135 # CONTENT-NEXT: Info: 0
136 # CONTENT-NEXT: AddressAlignment:
137 # CONTENT-NEXT: EntrySize:
138 # CONTENT-NEXT: SectionData (
139 # CONTENT-NEXT: 0000: 112233
140 # CONTENT-NEXT: )
151 Content: "112233"
153 ## Check we can omit "Content" and "Entries" fields to produce an empty SHT_GNU_verdef section.
171 ## Check we can use the "Content" key with the "Size" key when the size is greater
172 ## than or equal to the content size.
175 # RUN: FileCheck %s --check-prefix=CONTENT-SIZE-ERR
177 # CONTENT-SIZE-ERR: error: Section size must be greater than or equal to the content size
188 Content: [[CONTENT=<none>]]
193 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="0011"
197 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="001100"
199 # CHECK-CONTENT: Name: .gnu.version_d
200 # CHECK-CONTENT: SectionData (
201 # CHECK-CONTENT-NEXT: 0000: [[DATA]] |
202 # CHECK-CONTENT-NEXT: )
208 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="000000"
210 ## Check we can use the "Content" key alone to create the section.
212 # RUN: yaml2obj --docnum=4 -DCONTENT="'112233'" %s -o %t.content.o
213 # RUN: llvm-readobj --sections --section-data %t.content.o | \
214 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="112233"
216 ## Check we can't use the "Entries" key together with the "Content" or "Size" keys.
223 # ENTRIES-ERR: error: "Entries" cannot be used with "Content" or "Size"