Commit 59040e44 authored by Andrii Grynenko's avatar Andrii Grynenko Committed by Facebook Github Bot

Disable Future.BatonWait test on mobile

Reviewed By: amajeed1

Differential Revision: D14496345

fbshipit-source-id: 985e5299930c3812e7510f6dfe7bdcd3ce3519cf
parent 45ec0848
......@@ -1626,6 +1626,7 @@ TEST(Future, ThenRecursion) {
EXPECT_EQ(42, recursion(&executor, 100000).getVia(&executor));
}
#if FOLLY_FUTURE_USING_FIBER
TEST(Future, BatonWait) {
auto baton = std::make_unique<fibers::Baton>();
bool posted{false};
......@@ -1643,3 +1644,4 @@ TEST(Future, BatonWait) {
.getVia(&executor);
EXPECT_TRUE(postFuture.isReady());
}
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment