Lines Matching refs:script

6 # RUN: echo "SECTIONS { .aaa : { *(.aaa.*) } }" > %t1.script
7 # RUN: ld.lld -o %t1 --script %t1.script %t2.o %t1.o
19 # RUN: echo "SECTIONS { .aaa : { *(SORT(.aaa.*)) } }" > %t2.script
20 # RUN: ld.lld -o %t2 --script %t2.script %t2.o %t1.o
33 # RUN: echo "SECTIONS { .aaa : { *(SORT(.aaa.*)) } }" > %t3.script
34 # RUN: ld.lld -o %t3 --script %t3.script %t1.o %t2.o
46 # RUN: echo "SECTIONS { .aaa : { KEEP (*(SORT(.aaa.*))) } }" > %t3.script
47 # RUN: ld.lld -o %t3 --script %t3.script %t2.o %t1.o
51 # RUN: echo "SECTIONS { .aaa : { *(SORT_BY_NAME(.aaa.*)) } }" > %t4.script
52 # RUN: ld.lld -o %t4 --script %t4.script %t2.o %t1.o
56 # RUN: echo "SECTIONS { .aaa : { *(SORT_BY_ALIGNMENT(.aaa.*)) } }" > %t5.script
57 # RUN: ld.lld -o %t5 --script %t5.script %t1.o %t2.o
70 # RUN: echo "SECTIONS { .aaa : { *(SORT_NONE(.aaa.*)) } }" > %t6.script
71 # RUN: ld.lld -o %t7 --script %t6.script %t2.o %t1.o
75 # RUN: echo "SECTIONS { .aaa : { *(.aaa.*) } }" > %t7.script
76 # RUN: ld.lld --sort-section alignment -o %t8 --script %t7.script %t1.o %t2.o
80 # RUN: ld.lld --sort-section=alignment -o %t8_1 --script %t7.script %t1.o %t2.o
84 # RUN: echo "SECTIONS { .aaa : { *(.aaa.*) } }" > %t8.script
85 # RUN: ld.lld --sort-section name -o %t9 --script %t8.script %t1.o %t2.o
89 # RUN: echo "SECTIONS { .aaa : { *(SORT_NONE(.aaa.*)) } }" > %t9.script
90 # RUN: ld.lld --sort-section name -o %t10 --script %t9.script %t2.o %t1.o
94 # RUN: echo "SECTIONS { .aaa : { *(SORT_BY_NAME(SORT_NONE(.aaa.*))) } }" > %t10.script
95 # RUN: ld.lld -o %t11 --script %t10.script %t2.o %t1.o