From: Louis Boval Date: Tue, 11 Oct 2016 05:11:03 +0000 (-0700) Subject: Disabling failing test for fbandroid X-Git-Tag: v2016.10.17.00~18 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=40e6161e4c8734298001823e51d4aa995a6da5a8;p=folly.git 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 --- 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) {