[TESTS] Extract common backend directives into ConfigurationDirectives

This commit is contained in:
Ivan Kylchik
2021-10-25 14:27:44 +03:00
parent 108d6b63dd
commit 37f02390ec
15 changed files with 29 additions and 27 deletions
@@ -11,4 +11,12 @@ object ConfigurationDirectives : SimpleDirectivesContainer() {
val KOTLIN_CONFIGURATION_FLAGS by stringDirective(
"List of kotlin configuration flags"
)
val WITH_RUNTIME by directive(
description = """
Add Kotlin stdlib to classpath
This directive is deprecated, use WITH_STDLIB instead
""".trimIndent()
)
val WITH_STDLIB by directive("Add Kotlin runtime to classpath")
}