Author: kcc
Date: Mon May 12 02:05:16 2014
New Revision: 208521

URL: http://llvm.org/viewvc/llvm-project?rev=208521&view=rev
Log:
disable asan's detect_stack_use_after_return when running CXX/drs/dr4xx.cpp 
(temporary workaround for PR19722); This should make the asan bootstrap bot 
green again

Modified:
    cfe/trunk/test/CXX/drs/dr4xx.cpp

Modified: cfe/trunk/test/CXX/drs/dr4xx.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/drs/dr4xx.cpp?rev=208521&r1=208520&r2=208521&view=diff
==============================================================================
--- cfe/trunk/test/CXX/drs/dr4xx.cpp (original)
+++ cfe/trunk/test/CXX/drs/dr4xx.cpp Mon May 12 02:05:16 2014
@@ -1,6 +1,6 @@
-// RUN: %clang_cc1 -std=c++98 %s -verify -fexceptions -fcxx-exceptions 
-pedantic-errors
-// RUN: %clang_cc1 -std=c++11 %s -verify -fexceptions -fcxx-exceptions 
-pedantic-errors
-// RUN: %clang_cc1 -std=c++1y %s -verify -fexceptions -fcxx-exceptions 
-pedantic-errors
+// RUN: ASAN_OPTIONS=detect_stack_use_after_return=0 %clang_cc1 -std=c++98 %s 
-verify -fexceptions -fcxx-exceptions -pedantic-errors
+// RUN: ASAN_OPTIONS=detect_stack_use_after_return=0 %clang_cc1 -std=c++11 %s 
-verify -fexceptions -fcxx-exceptions -pedantic-errors
+// RUN: ASAN_OPTIONS=detect_stack_use_after_return=0 %clang_cc1 -std=c++1y %s 
-verify -fexceptions -fcxx-exceptions -pedantic-errors
 
 // FIXME: __SIZE_TYPE__ expands to 'long long' on some targets.
 __extension__ typedef __SIZE_TYPE__ size_t;


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to