Skip to content

Commit

Permalink
leak in tests...
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed Mar 13, 2024
1 parent c3bbad1 commit 9c3441d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,25 @@ abstract class TransportTest : SuspendTest, TestWithLeakCheck {
@Test
fun fireAndForget10() = test {
(1..10).map { async { client.fireAndForget(payload(it)) } }.awaitAll()
delay(100) // TODO: leak check
}

@Test
open fun largePayloadFireAndForget10() = test {
(1..10).map { async { client.fireAndForget(requesterLargePayload) } }.awaitAll()
delay(100) // TODO: leak check
}

@Test
fun metadataPush10() = test {
(1..10).map { async { client.metadataPush(packet(requesterData)) } }.awaitAll()
delay(100) // TODO: leak check
}

@Test
open fun largePayloadMetadataPush10() = test {
(1..10).map { async { client.metadataPush(packet(requesterLargeData)) } }.awaitAll()
delay(100) // TODO: leak check
}

@Test
Expand Down

0 comments on commit 9c3441d

Please sign in to comment.