Lines Matching full:script
5 ## otherwise specified in the script.
6 # RUN: echo "SECTIONS { .exec : { *(.exec*) } }" > %t.script
7 # RUN: ld.lld -o %t.out --script %t.script %t
13 # RUN: echo "SECTIONS { .exec : { *(.exec*) }=0x11223344 }" > %t2.script
14 # RUN: ld.lld -o %t2.out --script %t2.script %t
16 # RUN: echo "SECTIONS { .exec : { FILL(0x11223344); *(.exec*) } }" > %t3.script
17 # RUN: ld.lld -o %t3.out --script %t3.script %t
24 # RUN: echo "SECTIONS { .exec : { *(.exec*) }=0x00000000 }" > %t4.script
25 # RUN: ld.lld -o %t4.out --script %t4.script %t
27 # RUN: echo "SECTIONS { .exec : { FILL(0x00000000); *(.exec*) } }" > %t5.script
28 # RUN: ld.lld -o %t5.out --script %t5.script %t