Lines Matching full:content
116 ## Check we can use the "Content" key with the "Size" key when the size is greater
117 ## than or equal to the content size.
121 # RUN: FileCheck %s --check-prefix=CONTENT-SIZE-ERR
123 # CONTENT-SIZE-ERR: error: Section size must be greater than or equal to the content size
134 Content: [[CONTENT=<none>]]
139 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="0011"
143 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="001100"
145 # CHECK-CONTENT: Name: .gnu.version
146 # CHECK-CONTENT-NEXT: Type: SHT_GNU_versym (0x6FFFFFFF)
147 # CHECK-CONTENT-NEXT: Flags [ (0x0)
148 # CHECK-CONTENT-NEXT: ]
149 # CHECK-CONTENT-NEXT: Address:
150 # CHECK-CONTENT-NEXT: Offset:
151 # CHECK-CONTENT-NEXT: Size:
152 # CHECK-CONTENT-NEXT: Link: 0
153 # CHECK-CONTENT: SectionData (
154 # CHECK-CONTENT-NEXT: 0000: [[DATA]] |
155 # CHECK-CONTENT-NEXT: )
161 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="000000"
163 ## Check we can use the "Content" key alone to create the section.
165 # RUN: yaml2obj --docnum=3 -DCONTENT="'112233'" %s -o %t.content.o
166 # RUN: llvm-readobj --sections --section-data %t.content.o | \
167 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="112233"
169 ## Check we can't use the "Entries" key together with the "Content" or "Size" keys.
176 # ENTRIES-ERR: error: "Entries" cannot be used with "Content" or "Size"