Skip to content

Commit 8a22c54

Browse files
committed
Get rid of timeout in stress test
1 parent 65e6c8c commit 8a22c54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/kotlinx-coroutines-core/test/UnconfinedConcurrentStressTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ class UnconfinedConcurrentStressTest : TestBase() {
1919
executor.close()
2020
}
2121

22-
@Test(timeout = 10_000L)
22+
@Test
2323
fun testConcurrent() = runTest {
24-
val iterations = 10_000 * stressTestMultiplier
24+
val iterations = 1_000 * stressTestMultiplier
2525
val startBarrier = CyclicBarrier(threads + 1)
2626
val finishLatch = CountDownLatch(threads)
2727

0 commit comments

Comments
 (0)