rsocket / rsocket-cpp

C++ implementation of RSocket
http://rsocket.io
Apache License 2.0
253 stars 99 forks source link

increase timeout for travis #842

Closed dymk closed 6 years ago

dymk commented 6 years ago

Travis keeps failing with errors like:

increase the amount of time that we await

Also remove 'make coverage'; we're not using that information, and it increases build/test time by 4 minutes or so.

dymk commented 6 years ago

The failing tests shouldn't take more than a few 10s of ms. I looked into this more, I think it's due to races on terminated_ in TestSubscriber. The condition var is getting a notification but reading an out of date terminated_; this change should fix that