Three times as longer stress test (x30 multiplier)
diff --git a/kotlinx-coroutines-core/src/test/kotlin/kotlinx/coroutines/experimental/TestBase.kt b/kotlinx-coroutines-core/src/test/kotlin/kotlinx/coroutines/experimental/TestBase.kt
index 0454fc3..712498b 100644
--- a/kotlinx-coroutines-core/src/test/kotlin/kotlinx/coroutines/experimental/TestBase.kt
+++ b/kotlinx-coroutines-core/src/test/kotlin/kotlinx/coroutines/experimental/TestBase.kt
@@ -23,7 +23,7 @@
 
 open class TestBase {
     val isStressTest = System.getProperty("stressTest") != null
-    val stressTestMultiplier = if (isStressTest) 10 else 1
+    val stressTestMultiplier = if (isStressTest) 30 else 1
 
     var actionIndex = AtomicInteger()
     var finished = AtomicBoolean()