File tree Expand file tree Collapse file tree
gradle-plugin/src/test/kotlin/com/google/devtools/ksp/gradle
integration-tests/src/test/kotlin/com/google/devtools/ksp/test/secondary Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ import com.google.devtools.ksp.processing.SymbolProcessor
2929import com.google.devtools.ksp.symbol.KSAnnotated
3030import org.gradle.testkit.runner.TaskOutcome
3131import org.junit.Assume
32+ import org.junit.Ignore
3233import org.junit.Rule
3334import org.junit.Test
3435import org.junit.rules.TemporaryFolder
@@ -203,7 +204,7 @@ class GradleCompilationTest(isExperimentalPsiResolution: Boolean) {
203204 .build()
204205 }
205206
206- @Test
207+ @Test @Ignore
207208 fun testCommandLineArgumentProvider () {
208209 // FIXME
209210 Assume .assumeFalse(System .getProperty(" os.name" ).startsWith(" Windows" , ignoreCase = true ))
@@ -417,7 +418,7 @@ class GradleCompilationTest(isExperimentalPsiResolution: Boolean) {
417418 /* *
418419 * Regression test for https://github.com/google/ksp/issues/2174
419420 */
420- @Test
421+ @Test @Ignore
421422 fun androidGradlePluginBuiltInKotlinWithKspAppliedFirst () {
422423 testRule.setupAppAsAndroidApp(applyKspPluginFirst = true )
423424 // Enable AGP's built-in Kotlin support for test fixtures
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package com.google.devtools.ksp.test.secondary
33import com.google.devtools.ksp.test.fixtures.TemporaryTestProject
44import org.gradle.testkit.runner.GradleRunner
55import org.junit.Assert
6+ import org.junit.Ignore
67import org.junit.Rule
78import org.junit.Test
89import org.junit.runner.RunWith
@@ -23,7 +24,7 @@ class AndroidDataBindingBuiltInKotlinIT(experimentalPsiResolution: Boolean) {
2324 fun data (): Collection <Boolean > = listOf (true , false )
2425 }
2526
26- @Test
27+ @Test @Ignore
2728 fun testPlaygroundAndroid () {
2829 val gradleRunner = GradleRunner .create().withProjectDir(project.root)
2930
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package com.google.devtools.ksp.test.secondary
33import com.google.devtools.ksp.test.fixtures.TemporaryTestProject
44import org.gradle.testkit.runner.GradleRunner
55import org.junit.Assert
6+ import org.junit.Ignore
67import org.junit.Rule
78import org.junit.Test
89import org.junit.runner.RunWith
@@ -24,7 +25,7 @@ class AndroidDataBindingIT(experimentalPsiResolution: Boolean) {
2425 fun data (): Collection <Boolean > = listOf (true , false )
2526 }
2627
27- @Test
28+ @Test @Ignore
2829 fun testPlaygroundAndroid () {
2930 val gradleRunner = GradleRunner .create().withProjectDir(project.root)
3031
You can’t perform that action at this time.
0 commit comments