diff options
Diffstat (limited to 'tests/test_pair.cpp')
-rw-r--r-- | tests/test_pair.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_pair.cpp b/tests/test_pair.cpp index 01ea5b0..381874f 100644 --- a/tests/test_pair.cpp +++ b/tests/test_pair.cpp @@ -39,6 +39,9 @@ int main () { const string returned = zmqtestutil::ping_pong (p, expect); assert (expect == returned); + // Adjust socket state so that poll shows only 1 pending message. + zmq::message_t mx ; + p.first->recv(&mx, 0); } { |