2 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
4 # RUN: echo "SECTIONS { .bar (foo) : { } };" > %t.script
5 # RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s
6 # CHECK: symbol not found: foo
8 # RUN: echo "SECTIONS { .bar : AT(foo) { } };" > %t.script
9 # RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s
11 # RUN: echo "SECTIONS { .bar : ALIGN(foo) { } };" > %t.script
12 # RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s
14 # RUN: echo "SECTIONS { .bar : SUBALIGN(foo) { } };" > %t.script
15 # RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s