XFAIL elf/demangle.test on Windows.

Because LLD on that platform can't demangle symbols.

llvm-svn: 221504
This commit is contained in:
Rui Ueyama 2014-11-07 01:30:49 +00:00
parent 1d7d4eb15c
commit 6dca8d1c36
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
# XFAIL: win32
#
# Check that the linker is able to demangle strings properly.
# Once there is a way to add undefined symbols using yaml2obj, the test will be
# changed.
#
RUN: lld -flavor gnu -target x86_64 %p/Inputs/undefcpp.o --noinhibit-exec 2>&1 | FileCheck -check-prefix=DEMANGLE %s
RUN: lld -flavor gnu -target x86_64 %p/Inputs/undefcpp.o --noinhibit-exec --no-demangle 2>&1 | FileCheck -check-prefix=NODEMANGLE %s
RUN: lld -flavor gnu -target x86_64 %p/Inputs/undefcpp.o --noinhibit-exec --demangle 2>&1 | FileCheck -check-prefix=DEMANGLE %s