3 # RUN: echo '.globl foo1; foo1:' | \
4 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t1.o
5 # RUN: echo '.globl foo2; foo2:' | \
6 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t2.o
7 # RUN: echo '.globl foo32; foo32:' | \
8 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t3.o
9 # RUN: echo '.globl bar; bar:' | \
10 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t4.o
12 # RUN: llvm-ar rcs %t.a %t1.o %t2.o %t3.o %t4.o
14 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
16 # RUN: ld.lld -o %t.exe %t.o %t.a
17 # RUN: llvm-nm %t.exe | FileCheck --check-prefix=NO-OPT %s
22 # RUN: ld.lld -o %t.exe %t.o %t.a --undefined-glob foo1
23 # RUN: llvm-readobj --symbols %t.exe | FileCheck --check-prefix=FOO1 %s
28 # RUN: ld.lld -o %t.exe %t.o %t.a --undefined-glob 'foo*'
29 # RUN: llvm-readobj --symbols %t.exe | FileCheck --check-prefix=FOO-STAR %s
36 # RUN: ld.lld -o %t.exe %t.o %t.a --undefined-glob 'foo?'
37 # RUN: llvm-readobj --symbols %t.exe | FileCheck --check-prefix=FOO-Q %s
44 # RUN: ld.lld -o %t.exe %t.o %t.a --undefined-glob 'foo[13]*'
45 # RUN: llvm-readobj --symbols %t.exe | FileCheck --check-prefix=FOO13 %s
52 # RUN: not ld.lld -o /dev/null %t.o %t.a --undefined-glob '[' 2>&1 | \
53 # RUN: FileCheck -check-prefix=BAD-PATTERN %s
55 # BAD-PATTERN: --undefined-glob: invalid glob pattern, unmatched '[': [