forked from OSchip/llvm-project
[nfc][lld-macho] Fixed test from https://reviews.llvm.org/D125732
Details: The test was incorrectly expecting the error messages for the export symbols to have a particular order. It shouldn't because the export symbol list is processed concurrently.
This commit is contained in:
parent
a997cdc3b7
commit
bd9e46815d
|
@ -1,5 +1,4 @@
|
|||
# REQUIRES: x86
|
||||
# UNSUPPORTED: system-windows
|
||||
|
||||
# RUN: rm -rf %t; split-file %s %t
|
||||
|
||||
|
@ -17,10 +16,10 @@
|
|||
# DEMANGLE-UNDEF: undefined symbol: f()
|
||||
|
||||
# EXPORT: cannot export hidden symbol __ZTSN3foo3bar4MethE
|
||||
# EXPORT: cannot export hidden symbol __ZTIN3foo3bar4MethE
|
||||
# EXPORT-DAG: cannot export hidden symbol __ZTIN3foo3bar4MethE
|
||||
|
||||
# DEMANGLE-EXPORT: cannot export hidden symbol typeinfo name for foo::bar::Meth
|
||||
# DEMANGLE-EXPORT: cannot export hidden symbol typeinfo for foo::bar::Meth
|
||||
# DEMANGLE-EXPORT-DAG: cannot export hidden symbol typeinfo for foo::bar::Meth
|
||||
|
||||
#--- undefined-symbol.s
|
||||
.globl _main
|
||||
|
|
Loading…
Reference in New Issue