From 40e6161e4c8734298001823e51d4aa995a6da5a8 Mon Sep 17 00:00:00 2001 From: Louis Boval Date: Mon, 10 Oct 2016 22:11:03 -0700 Subject: [PATCH] Disabling failing test for fbandroid Summary: this particular test fails reliably for fbandroid. Modifying the code in fbcode, assuming it will be synced promptly. Reviewed By: edelron Differential Revision: D4000722 fbshipit-source-id: fca5e691ea5c972ddd245acee1c17720730539d4 --- folly/test/ExceptionWrapperTest.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/folly/test/ExceptionWrapperTest.cpp b/folly/test/ExceptionWrapperTest.cpp index 954e92ce..e42f9941 100644 --- a/folly/test/ExceptionWrapperTest.cpp +++ b/folly/test/ExceptionWrapperTest.cpp @@ -229,9 +229,13 @@ TEST(ExceptionWrapper, getExceptionPtr_test) { EXPECT_THROW(std::rethrow_exception(eptr), IntException); // Test with empty ew. + + // Disabling pending fix for fbandroid: t13822116 + /* exception_wrapper empty_ew; eptr = empty_ew.getExceptionPtr(); EXPECT_DEATH(std::rethrow_exception(eptr), "exception"); + */ } TEST(ExceptionWrapper, with_exception_deduction) { -- 2.34.1