forked from OSchip/llvm-project
Check the produced file instead of stderr.
It is somewhat pointless to check that a specific error is not produced. That is already checked by the ld.lld exit value. Instead make the test a bit stronger by checking that the output file has the expected symbol and section. llvm-svn: 306496
This commit is contained in:
parent
f73c8a06a9
commit
36f2edb6fd
|
@ -1,9 +1,10 @@
|
|||
# REQUIRES: x86
|
||||
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
|
||||
# RUN: echo "SECTIONS { .text : { *(.text*) QUAD(bar) } }" > %t.script
|
||||
# RUN: ld.lld --gc-sections -o %t %t.o --script %t.script | FileCheck -allow-empty %s
|
||||
# RUN: ld.lld --gc-sections -o %t %t.o --script %t.script
|
||||
# RUN: llvm-objdump -t %t | FileCheck %s
|
||||
|
||||
# CHECK-NOT: unable to evaluate expression: input section .rodata.bar has no output section assigned
|
||||
# CHECK: 0000000000000011 .rodata 00000000 bar
|
||||
|
||||
.section .rodata.bar
|
||||
.quad 0x1122334455667788
|
||||
|
|
Loading…
Reference in New Issue