Skip to content

Commit 8d915ce

Browse files
committed
Ignore tests
These tests use Room which does not yet support backing fields.
1 parent a6524c6 commit 8d915ce

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

gradle-plugin/src/test/kotlin/com/google/devtools/ksp/gradle/GradleCompilationTest.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import com.google.devtools.ksp.processing.SymbolProcessor
2929
import com.google.devtools.ksp.symbol.KSAnnotated
3030
import org.gradle.testkit.runner.TaskOutcome
3131
import org.junit.Assume
32+
import org.junit.Ignore
3233
import org.junit.Rule
3334
import org.junit.Test
3435
import 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

integration-tests/src/test/kotlin/com/google/devtools/ksp/test/secondary/AndroidDataBindingBuiltInKotlinIT.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package com.google.devtools.ksp.test.secondary
33
import com.google.devtools.ksp.test.fixtures.TemporaryTestProject
44
import org.gradle.testkit.runner.GradleRunner
55
import org.junit.Assert
6+
import org.junit.Ignore
67
import org.junit.Rule
78
import org.junit.Test
89
import 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

integration-tests/src/test/kotlin/com/google/devtools/ksp/test/secondary/AndroidDataBindingIT.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package com.google.devtools.ksp.test.secondary
33
import com.google.devtools.ksp.test.fixtures.TemporaryTestProject
44
import org.gradle.testkit.runner.GradleRunner
55
import org.junit.Assert
6+
import org.junit.Ignore
67
import org.junit.Rule
78
import org.junit.Test
89
import 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

0 commit comments

Comments
 (0)