File tree 1 file changed +2
-2
lines changed
kotlinx-coroutines-core/jvm/test
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,15 @@ import kotlin.coroutines.AbstractCoroutineContextElement
7
7
import kotlin.coroutines.Continuation
8
8
import kotlin.coroutines.ContinuationInterceptor
9
9
import kotlin.coroutines.CoroutineContext
10
- import kotlin.test.Test
10
+ import kotlin.test.*
11
11
12
12
/*
13
13
* This is an adapted verion of test from #4296.
14
14
*
15
15
* qwwdfsad: the test relies on System.gc() actually collecting the garbage.
16
16
* If these tests flake on CI, first check that JDK/GC setup in not an issue.
17
17
*/
18
+ @Ignore
18
19
class ThreadLocalCustomContinuationInterceptorTest : TestBase () {
19
20
20
21
private class CustomContinuationInterceptor (private val delegate : ContinuationInterceptor ) :
@@ -41,7 +42,6 @@ class ThreadLocalCustomContinuationInterceptorTest : TestBase() {
41
42
@Test(timeout = 20_000L )
42
43
fun testDefaultDispatcher () = ensureCoroutineContextGCed(Dispatchers .Default , suspend = true )
43
44
44
-
45
45
@Test(timeout = 20_000L )
46
46
fun testNonCoroutineDispatcher () = ensureCoroutineContextGCed(
47
47
CustomContinuationInterceptor (Dispatchers .Default ),
You can’t perform that action at this time.
0 commit comments