Lines Matching full:content

3 ## Test that the content of SHT_RELR sections for 64-bit little endian targets is correct.
24 ## Test that the content of SHT_RELR sections for 64-bit big endian targets is correct.
47 ## Test that the content of SHT_RELR sections for 32-bit little endian targets is correct.
67 ## Test that the content of SHT_RELR sections for 32-bit big endian targets is correct.
105 Content: "12"
139 ## Check we can use the "Content" key with the "Size" key when the size is greater
140 ## than or equal to the content size.
143 # RUN: FileCheck %s --check-prefix=CONTENT-SIZE-ERR
145 # CONTENT-SIZE-ERR: error: Section size must be greater than or equal to the content size
157 Content: [[CONTENT=<none>]]
162 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="0011"
166 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="001100"
168 # CHECK-CONTENT: Name: .relr.dyn
169 # CHECK-CONTENT-NEXT: Type: SHT_RELR
170 # CHECK-CONTENT-NEXT: Flags [
171 # CHECK-CONTENT-NEXT: ]
172 # CHECK-CONTENT-NEXT: Address:
173 # CHECK-CONTENT-NEXT: Offset:
174 # CHECK-CONTENT-NEXT: Size:
175 # CHECK-CONTENT-NEXT: Link:
176 # CHECK-CONTENT-NEXT: Info:
177 # CHECK-CONTENT-NEXT: AddressAlignment:
178 # CHECK-CONTENT-NEXT: EntrySize: 255
179 # CHECK-CONTENT-NEXT: SectionData (
180 # CHECK-CONTENT-NEXT: 0000: [[DATA]] |
181 # CHECK-CONTENT-NEXT: )
187 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="000000"
189 ## Check we can use the "Content" key alone to create the section.
191 # RUN: yaml2obj --docnum=6 -DCONTENT="'112233'" %s -o %t.content.o
192 # RUN: llvm-readobj --sections --section-data %t.content.o | \
193 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="112233"
195 ## Check we can't use the "Entries" key together with the "Content" or "Size" keys.
202 # ENTRIES-ERR: error: "Entries" cannot be used with "Content" or "Size"
204 ## Check we create an empty section when none of "Size", "Content" or "Entries" are specified.