2 # RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t.o
4 # RUN: echo 'foo { foo*; }; bar { *; };' > %t.ver
5 # RUN: ld.lld --version-script %t.ver %t.o -shared -o %t.so --fatal-warnings
6 # RUN: llvm-readelf --dyn-syms %t.so | FileCheck --check-prefix=FOO %s
8 # RUN: echo 'foo { foo*; }; bar { f*; };' > %t.ver
9 # RUN: ld.lld --version-script %t.ver %t.o -shared -o %t.so --fatal-warnings
10 # RUN: llvm-readelf --dyn-syms %t.so | FileCheck --check-prefix=BAR %s
12 # RUN: echo 'bar1 { *; }; bar2 { *; };' > %t2.ver
13 # RUN: ld.lld --version-script %t2.ver %t.o -shared -o %t2.so --fatal-warnings
14 # RUN: llvm-readelf --dyn-syms %t2.so | FileCheck --check-prefix=BAR2 %s
16 ## If both a non-* glob and a * match, non-* wins.
17 ## This is GNU linkers' behavior. We don't feel strongly this should be supported.
18 # FOO: GLOBAL DEFAULT 7 foo@@foo
20 # BAR: GLOBAL DEFAULT 7 foo@@bar
22 ## When there are multiple * patterns, the last wins.
23 # BAR2: GLOBAL DEFAULT 7 foo@@bar2