6358: Fix probe order test logic.
authorTom Clegg <tom@curoverse.com>
Tue, 20 Oct 2015 21:53:27 +0000 (17:53 -0400)
committerTom Clegg <tom@curoverse.com>
Tue, 20 Oct 2015 21:54:15 +0000 (17:54 -0400)
commitb23dbeaa9a3900e6a5fe6ed2df53d191317f31ec
tree9431ff8e49949b1f972fb9600c9b55528d4e3374
parent38625a4ac1665055951265c1373a0e38a36a125d
6358: Fix probe order test logic.

This request order is OK with two threads: thread "0" just took a long
time to make its request.

expect 0 1 2 3 4 5 6 7
got    1 2 3 4 5 0 6 7

The inverse is not OK. This would mean 0 started before any of
1,2,3,4,5 finished.

expect 1 2 3 4 5 0 6 7
got    0 1 2 3 4 5 6 7

refs #6358
sdk/python/tests/test_keep_client.py