Adjust USDS test for macOS behavior.
This commit is contained in:
parent
356a34fad2
commit
4f94cd107e
|
@ -55,6 +55,9 @@ void testDgram()
|
||||||
assert(bytes == pack2.length);
|
assert(bytes == pack2.length);
|
||||||
})(pack2, IOMode.once, baddr);
|
})(pack2, IOMode.once, baddr);
|
||||||
|
|
||||||
|
auto tm = eventDriver.timers.create();
|
||||||
|
eventDriver.timers.set(tm, 50.msecs, 0.msecs);
|
||||||
|
eventDriver.timers.wait(tm, (tm) {
|
||||||
s_baseSocket.receive!((status, bts, scope addr) {
|
s_baseSocket.receive!((status, bts, scope addr) {
|
||||||
assert(status == IOStatus.ok);
|
assert(status == IOStatus.ok);
|
||||||
assert(bts == pack2.length);
|
assert(bts == pack2.length);
|
||||||
|
@ -68,6 +71,7 @@ void testDgram()
|
||||||
// FIXME: this shouldn't ne necessary:
|
// FIXME: this shouldn't ne necessary:
|
||||||
eventDriver.core.exit();
|
eventDriver.core.exit();
|
||||||
})(s_rbuf, IOMode.immediate);
|
})(s_rbuf, IOMode.immediate);
|
||||||
|
});
|
||||||
})(s_rbuf, IOMode.once);
|
})(s_rbuf, IOMode.once);
|
||||||
s_connectedSocket.send!((status, bytes) {
|
s_connectedSocket.send!((status, bytes) {
|
||||||
assert(status == IOStatus.ok);
|
assert(status == IOStatus.ok);
|
||||||
|
|
Loading…
Reference in a new issue