Lines Matching refs:script
4 # RUN: echo "FOO { global: extern \"C++\" { ab[c]*; }; };" > %t.script
5 # RUN: ld.lld --version-script %t.script -shared %t.o -o %t.so
10 # RUN: echo "FOO { global: extern \"C++\" { ab[b]*; }; };" > %t1.script
11 # RUN: ld.lld --version-script %t1.script -shared %t.o -o %t1.so
16 # RUN: echo "FOO { global: extern \"C++\" { ab[a-b]*; }; };" > %t2.script
17 # RUN: ld.lld --version-script %t2.script -shared %t.o -o %t2.so
20 # RUN: echo "FOO { global: extern \"C++\" { ab[a-c]*; }; };" > %t3.script
21 # RUN: ld.lld --version-script %t3.script -shared %t.o -o %t3.so
26 # RUN: echo "FOO { global: extern \"C++\" { ab[a-bc-d]*; }; };" > %t4.script
27 # RUN: ld.lld --version-script %t4.script -shared %t.o -o %t4.so
30 # RUN: echo "FOO { global: extern \"C++\" { ab[a-bd-e]*; }; };" > %t5.script
31 # RUN: ld.lld --version-script %t5.script -shared %t.o -o %t5.so
34 # RUN: echo "FOO { global: extern \"C++\" { ab[^a-c]*; }; };" > %t6.script
35 # RUN: ld.lld --version-script %t6.script -shared %t.o -o %t6.so
40 # RUN: echo "FOO { global: extern \"C++\" { ab[^c-z]*; }; };" > %t7.script
41 # RUN: ld.lld --version-script %t7.script -shared %t.o -o %t7.so
44 # RUN: echo "FOO { global: extern \"C++\" { a[x-za-b][a-c]*; }; };" > %t8.script
45 # RUN: ld.lld --version-script %t8.script -shared %t.o -o %t8.so
48 # RUN: echo "FOO { global: extern \"C++\" { a[; }; };" > %t9.script
49 # RUN: not ld.lld --version-script %t9.script -shared %t.o -o /dev/null 2>&1 \