[compiler-rt] r309440 - Try to fix asan test on sanitizer-windows
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 28 14:43:23 PDT 2017
Author: rnk
Date: Fri Jul 28 14:43:23 2017
New Revision: 309440
URL: http://llvm.org/viewvc/llvm-project?rev=309440&view=rev
Log:
Try to fix asan test on sanitizer-windows
Modified:
compiler-rt/trunk/test/asan/TestCases/pass-object-byval.cc
Modified: compiler-rt/trunk/test/asan/TestCases/pass-object-byval.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/pass-object-byval.cc?rev=309440&r1=309439&r2=309440&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/pass-object-byval.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/pass-object-byval.cc Fri Jul 28 14:43:23 2017
@@ -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 <cassert>
class A {
More information about the llvm-commits
mailing list