Update to 193.5233.102 release (KT-35239)
- Mute android specific import tests (KT-35225). - Mute GradleMultiplatformWizardTest (IDEA-225878). - Minor update of test data.
This commit is contained in:
@@ -68,6 +68,10 @@ dependencies {
|
||||
Platform[192].orHigher {
|
||||
testCompile(intellijDep()) { includeJars("platform-util-ui", "platform-concurrency", "platform-objectSerializer") }
|
||||
}
|
||||
|
||||
Platform[193].orHigher {
|
||||
testCompile(intellijDep()) { includeJars("platform-ide-util-io") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -165,7 +165,7 @@ class RunnerFactoryWithMuteInDatabase: ParametersRunnerFactory {
|
||||
}
|
||||
}
|
||||
|
||||
private fun isIgnoredInDatabaseWithLog(child: FrameworkMethod): Boolean {
|
||||
fun isIgnoredInDatabaseWithLog(child: FrameworkMethod): Boolean {
|
||||
if (isMutedInDatabase(child.method)) {
|
||||
System.err.println(mutedMessage(testKey(child.method)))
|
||||
return true
|
||||
@@ -174,6 +174,15 @@ private fun isIgnoredInDatabaseWithLog(child: FrameworkMethod): Boolean {
|
||||
return false
|
||||
}
|
||||
|
||||
fun isIgnoredInDatabaseWithLog(testCase: TestCase): Boolean {
|
||||
if (isMutedInDatabase(testCase)) {
|
||||
System.err.println(mutedMessage(testKey(testCase)))
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
fun TestCase.runTest(test: () -> Unit) {
|
||||
(wrapWithMuteInDatabase(this, test) ?: test).invoke()
|
||||
}
|
||||
Reference in New Issue
Block a user