From 00fd0a421fcefe61280836e714e6c93ba05f4883 Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Wed, 14 Jun 2023 17:53:27 +0200 Subject: [PATCH] [K/N] Remove runtime tests for legacy MM --- kotlin-native/runtime/build.gradle.kts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/kotlin-native/runtime/build.gradle.kts b/kotlin-native/runtime/build.gradle.kts index 846e81e920a..6f136dcb203 100644 --- a/kotlin-native/runtime/build.gradle.kts +++ b/kotlin-native/runtime/build.gradle.kts @@ -328,19 +328,11 @@ bitcode { onlyIf { target.supportsThreads() } } - testsGroup("std_alloc_runtime_tests") { - testedModules.addAll("main", "legacy_memory_manager", "strict", "std_alloc", "objc") - } - testsGroup("custom_alloc_runtime_tests") { testedModules.addAll("custom_alloc") testSupportModules.addAll("main", "experimental_memory_manager", "common_gc", "concurrent_ms_gc", "objc") } - testsGroup("mimalloc_runtime_tests") { - testedModules.addAll("main", "legacy_memory_manager", "strict", "mimalloc", "opt_alloc", "objc") - } - testsGroup("experimentalMM_mimalloc_runtime_tests") { testedModules.addAll("main", "experimental_memory_manager", "common_gc", "same_thread_ms_gc", "mimalloc", "opt_alloc", "objc") }