From 3bcad2b2e671e3ef948a4d537143274ae1a89609 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Fri, 28 Jul 2017 21:43:23 +0000 Subject: [PATCH] Try to fix asan test on sanitizer-windows llvm-svn: 309440 --- compiler-rt/test/asan/TestCases/pass-object-byval.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler-rt/test/asan/TestCases/pass-object-byval.cc b/compiler-rt/test/asan/TestCases/pass-object-byval.cc index 189fcbe..b99360f 100644 --- a/compiler-rt/test/asan/TestCases/pass-object-byval.cc +++ b/compiler-rt/test/asan/TestCases/pass-object-byval.cc @@ -3,6 +3,10 @@ // RUN: %clangxx_asan -O0 %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s --implicit-check-not \ // RUN: Assertion{{.*}}failed + +// ASan instrumentation can't insert red-zones around inalloca parameters. +// XFAIL: win32 && asan-32-bits + #include class A { -- 2.7.4