[compiler-rt] r367293 - [ASan][test] XFAIL AddressSanitizer-*-sunos :: TestCases/intercept-rethrow-exception.cc on Solaris
Rainer Orth via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 30 00:59:43 PDT 2019
Author: ro
Date: Tue Jul 30 00:59:43 2019
New Revision: 367293
URL: http://llvm.org/viewvc/llvm-project?rev=367293&view=rev
Log:
[ASan][test] XFAIL AddressSanitizer-*-sunos :: TestCases/intercept-rethrow-exception.cc on Solaris
AddressSanitizer-*-sunos :: TestCases/intercept-rethrow-exception.cc currently FAILs
on Solaris. This happens because std::rethrow_exception cannot be intercepted, as
detailed in Bug 42703.
To account for this and reduce testsuite noise, this patch XFAILs the test.
Tested on x86_64-pc-solaris2.11.
Differential Revision: https://reviews.llvm.org/D65056
Modified:
compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc
Modified: compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc?rev=367293&r1=367292&r2=367293&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc Tue Jul 30 00:59:43 2019
@@ -7,6 +7,8 @@
// The current implementation of this functionality requires special
// combination of libraries that are not used by default on NetBSD
// XFAIL: netbsd
+// FIXME: Bug 42703
+// XFAIL: solaris
#include <assert.h>
#include <exception>
More information about the llvm-commits
mailing list