Lines Matching full:content
1 ## Check how "Content", "Size" and "Entries" keys can be used to
2 ## describe a content for relocations sections.
4 ## Check we can use the "Content" key alone.
6 # RUN: yaml2obj -DCONTENT="01234567" %s -o %t1.content
7 # RUN: llvm-readobj --sections --section-data %t1.content | \
26 Content: [[CONTENT=<none>]]
36 ## Check we can use the "Content" key with the "Size" key when the size is greater
37 ## than or equal to the content size.
40 # RUN: FileCheck %s --check-prefix=CONTENT-SIZE-ERR
42 # CONTENT-SIZE-ERR: error: Section size must be greater than or equal to the content size
52 ## Check we can't use the "Entries" key together with the "Content" or "Size" keys.
59 # ENT-ERR: error: "Entries" cannot be used with "Content" or "Size"
61 ## Check we create an empty section when none of "Size", "Content" or "Entries" are specified.