- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for DistributionTest (0.05 seconds)
-
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt
* or separately published libraries (like the Tooling API Jar). */ @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly") abstract class DistributionTest : Test() { /** * To further categorize tests. (We should simplify this and get rid of the subclasses if possible) */ @get:Internal abstract val prefix: String /**
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 18 18:02:41 GMT 2025 - 7.7K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts
tasks.withType<DistributionTest>().configureEach { shouldRunAfter("test") setJvmArgsOfTestJvm() setSystemPropertiesOfTestJVM("default") configureGradleTestEnvironment() addSetUpAndTearDownActions() } fun executerRequiresFullDistribution(taskName: String) = taskName.startsWith("noDaemon") fun DistributionTest.addSetUpAndTearDownActions() {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 18 18:02:41 GMT 2025 - 3.8K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts
* limitations under the License. */ import gradlebuild.basics.BuildEnvironment import gradlebuild.docs.FindBrokenInternalLinks import gradlebuild.integrationtests.tasks.DistributionTest import gradlebuild.performance.tasks.PerformanceTest import gradlebuild.testcleanup.extension.TestFilesCleanupBuildServiceRootExtension import me.champeau.gradle.japicmp.JapicmpTask
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 2.1K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeIdeTest.kt
* These tests are running using `forking` executor, since current Gradle distribution has to be used as a Gradle version for IDE. */ @CacheableTask abstract class SmokeIdeTest : DistributionTest() { override val prefix: String = "smokeIde"Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Dec 29 10:30:14 GMT 2023 - 1K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt
import gradlebuild.basics.testSplitOnlyTestGradleVersion import gradlebuild.basics.testing.TestType import gradlebuild.integrationtests.extension.IntegrationTestExtension import gradlebuild.integrationtests.tasks.DistributionTest import gradlebuild.integrationtests.tasks.GenerateAutoTestedSamplesTestTask import gradlebuild.integrationtests.tasks.IntegrationTest import gradlebuild.modules.extension.ExternalModulesExtension
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 18 16:39:23 GMT 2025 - 12.8K bytes - Click Count (0)