Github user jeking3 commented on the issue:
https://github.com/apache/thrift/pull/1103
I made this single change:
> +++ b/lib/cpp/test/processor/ProcessorTest.cpp
> uint32_t checkNewConnEvents(const boost::shared_ptr<EventLog>& log) {
> // Check for an ET_CONN_CREATED event
> Event event = log->waitForEvent(2000);
// <<< I added "2000"
> BOOST_CHECK_EQUAL(EventLog::ET_CONN_CREATED, event.type);
After making that change I can run processor_test:
> jking@jking-dvm51-buildenv-2:~/thrift-build$ ctest -R processor_test
> Test project /home/jking/thrift-build
> Start 19: processor_test
> 1/1 Test #19: processor_test ................... Passed 33.84 sec
>
> 100% tests passed, 0 tests failed out of 1
>
> Total Test time (real) = 33.88 sec
Looks like it's time to re-enable these tests!
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---