Skip to content

Commit

Permalink
Get rid of timeout in stress test
Browse files Browse the repository at this point in the history
  • Loading branch information
qwwdfsad committed Oct 22, 2018
1 parent 65e6c8c commit 8a22c54
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class UnconfinedConcurrentStressTest : TestBase() {
executor.close()
}

@Test(timeout = 10_000L)
@Test
fun testConcurrent() = runTest {
val iterations = 10_000 * stressTestMultiplier
val iterations = 1_000 * stressTestMultiplier
val startBarrier = CyclicBarrier(threads + 1)
val finishLatch = CountDownLatch(threads)

Expand Down

0 comments on commit 8a22c54

Please sign in to comment.