mirror of
https://github.com/deepseek-ai/3FS
synced 2025-06-10 08:36:09 +00:00
12 lines
575 B
OpenEdge ABL
12 lines
575 B
OpenEdge ABL
test tcPingPong [main = PingPongTest]:
|
|
assert RecvComplete, NoDuplicatePostedBuffers, AllIterationsProcessed in
|
|
(union RDMANetwork, { PingPongServer, PingPongClient, PingPongTest });
|
|
|
|
test tcOneWay [main = OneWayCommunication]:
|
|
assert RecvComplete, NoDuplicatePostedBuffers, AllIterationsProcessed in
|
|
(union RDMANetwork, { OneWayReceiver, OneWaySender, OneWayCommunication });
|
|
|
|
test tcTwoWay [main = TwoWayCommunication]:
|
|
assert RecvComplete, NoDuplicatePostedBuffers, AllIterationsProcessed in
|
|
(union RDMANetwork, { TwoWaySenderReceiver, TwoWayCommunication });
|