- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for IntegTest (0.05 sec)
-
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt
return mapOf( "integTest.gradleHomeDir" to distributionDir, "integTest.gradleUserHomeDir" to absolutePathOf(gradleUserHomeDir.dir(gradleDistribution.name)), "integTest.samplesdir" to absolutePathOf(gradleSnippetsDir), "org.gradle.integtest.daemon.registry" to absolutePathOf(daemonRegistry.dir(gradleDistribution.name)), "integTest.distZipVersion" to distZipVersion.get()
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 18:02:41 UTC 2025 - 7.7K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts
this.description = "Runs the cross-version tests against Gradle ${targetVersion.version}" this.systemProperties["org.gradle.integtest.versions"] = targetVersion.version this.systemProperties["org.gradle.integtest.crossVersion"] = "true" this.systemProperties["org.gradle.integtest.crossVersion.lowestTestedVersion"] = releasedVersions.lowestTestedVersion.version this.useJUnitPlatform {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Sep 05 02:31:24 UTC 2025 - 4.5K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts
import gradlebuild.integrationtests.setSystemPropertiesOfTestJVM plugins { java id("gradlebuild.dependency-modules") id("gradlebuild.jvm-compile") } extensions.create<IntegrationTestExtension>("integTest").apply { generateDefaultAutoTestedSamplesTest.convention(true) testJvmXmx.convention("512m") } val sourceSet = sourceSets.create("${TestType.INTEGRATION.prefix}Test") jvmCompile {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 16:39:23 UTC 2025 - 2.4K bytes - Viewed (5) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt
tasks.register<IntegrationTest>(name) { val integTest = project.the<IntegrationTestExtension>() project.getBucketProvider().get().bucketProvider.configureTest(this, sourceSet.name) description = "Runs ${testType.prefix} with $executer executer" systemProperties["org.gradle.integtest.executer"] = executer addDebugProperties()
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 16:39:23 UTC 2025 - 12.8K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
val projectFoldersWithFunctionalTests = subProjectFolderList().filter { File(it, "src/integTest").exists() } assertFalse(projectFoldersWithFunctionalTests.isEmpty()) projectFoldersWithFunctionalTests.forEach { assertFalse( containsSrcFileWithString( File(it, "src/integTest"), "CrossVersion",
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 16 01:27:05 UTC 2025 - 14.6K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild/jvm/argumentproviders/CiEnvironmentProvider.kt
return toolchainInstallationPaths.map { listOf("-D$JAVA_INSTALLATIONS_PATHS_PROPERTY.integTest=$it") }.getOrElse(emptyList()) } private fun getRepoMirrorSystemProperties(): List<String> = collectMirrorUrls().map { "-Dorg.gradle.integtest.mirrors.${it.key}=${it.value}" } private fun collectMirrorUrls(): Map<String, String> =Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Aug 19 10:37:27 UTC 2025 - 2.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt
**/build/git-checkout/build/distributions/*.zip => promote-build-distributions **/build/git-checkout/build/reports/integTest/** => distribution-tests **/build/releases-data-checkout/data/releases.xml **/smoke-tests/build/reports/tests/** => post-smoke-tests **/build/version-info.properties => version-info.propertiesRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 22 07:15:16 UTC 2025 - 3.2K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/GenerateAutoTestedSamplesTestTask.kt
/** * This task scans the main source set and findd samples in javadoc with `class='autoTested'`, * then generates a subclass of AbstractAutoTestedSamplesTest for each class including samples and adds them to the integTest. * * For example, we have two classes ABC.java and XYZ.groovy that include `class='autoTested'`, * there will be two files generated: `ABCAutoTestedSamplesTest.groovy` and `XYZAutoTestedSamplesTest.groovy` */
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 19 06:44:41 UTC 2025 - 3.9K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
}) } } fun addCompileAllTasks() { tasks.register("compileAll") { description = "Compile all source code, including main, test, integTest, crossVersionTest, testFixtures, etc." val compileTasks = project.tasks.matching { it is JavaCompile || it is GroovyCompile || it is KotlinCompile } dependsOn(compileTasks) }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 19 06:44:41 UTC 2025 - 18.9K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
} } } codenarc { config = configFile("codenarc.xml") reportFormat = "console" } tasks.withType<CodeNarc>().configureEach { if (name.contains("IntegTest")) { config = configFile("codenarc-integtests.xml") } } val SourceSet.allGroovy: SourceDirectorySet get() = the<GroovySourceDirectorySet>()Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Oct 01 11:57:43 UTC 2025 - 9.3K bytes - Viewed (0)