XFAIL ubsan suppressions.cpp test on Windows for now.

llvm-svn: 256307
This commit is contained in:
Nico Weber 2015-12-23 00:30:32 +00:00
parent 08d58bcf6a
commit 95ef4b3bf0
1 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,11 @@
// XFAIL: win32
// On Windows, %t starts with c:\. lit's ShLexer helpfully strips the
// quotes in the suppressions="%t..." lines below, so the UBSAN_OPTIONS
// env var that ubsan effectively sees is halt_on_error=1:suppressions=c:\...
// without any quotes. Since : is ubsan's UBSAN_OPTIONS separator, this
// confuses sanitizer_flag_parser.
// FIXME: Figure out how to make this test go on Windows.
// RUN: %clangxx -fsanitize=integer -g0 %s -o %t
// Fails without any suppression.