From c2e2d3a43e5ec08d0a2688858a61c7bd44acb6eb Mon Sep 17 00:00:00 2001 From: Dmitriy Dolovov Date: Fri, 27 Aug 2021 22:34:01 +0300 Subject: [PATCH] [Native][tests] workers5 - remove redundant test annotations --- .../backend.native/tests/runtime/workers/worker5.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kotlin-native/backend.native/tests/runtime/workers/worker5.kt b/kotlin-native/backend.native/tests/runtime/workers/worker5.kt index 7463eb026b1..bca67943d01 100644 --- a/kotlin-native/backend.native/tests/runtime/workers/worker5.kt +++ b/kotlin-native/backend.native/tests/runtime/workers/worker5.kt @@ -7,7 +7,7 @@ import kotlin.test.* import kotlin.native.concurrent.* -@Test fun runTest0() { +fun runTest0() { val worker = Worker.start() val future = worker.execute(TransferMode.SAFE, { "zzz" }) { input -> input.length @@ -21,7 +21,7 @@ import kotlin.native.concurrent.* var done = false -@Test fun runTest1() { +fun runTest1() { val worker = Worker.current done = false // Here we request execution of the operation on the current worker. @@ -33,7 +33,7 @@ var done = false } // Ensure that termination of current worker on main thread doesn't lead to problems. -@Test fun runTest2() { +fun runTest2() { val worker = Worker.current val future = worker.requestTermination(false) worker.processQueue()