Disabling failing test for fbandroid
authorLouis Boval <boval@fb.com>
Tue, 11 Oct 2016 05:11:03 +0000 (22:11 -0700)
committerFacebook Github Bot <facebook-github-bot-bot@fb.com>
Tue, 11 Oct 2016 05:23:53 +0000 (22:23 -0700)
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

index 954e92cec4b75ba2fb5e5cd1f53592bc2bd2ac63..e42f9941bd42c8b9c99cbdea2f00e0679840404c 100644 (file)
@@ -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) {