Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for IntegTest (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Provide integration tests (under `<subproject>/src/integTest`) to verify changes from a user perspective.
    - [ ] Provide unit tests (under `<subproject>/src/test`) to verify logic.
    - [ ] Update User Guide, DSL Reference, and Javadoc for public-facing changes.
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. .idea/scopes/Gradle_public_API.xml

        <scope name="Gradle public API"
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Jul 18 15:08:47 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/SubprojectsInfo.kt

                subprojectDir.name,
                rootPath.relativize(subprojectDir.toPath()).invariantSeparatorsPathString,
                subprojectDir.hasDescendantDir("src/test"),
                subprojectDir.hasDescendantDir("src/integTest"),
                subprojectDir.hasDescendantDir("src/crossVersionTest")
            )
        }
    
        private
        fun File.hasDescendantDir(descendant: String) = resolve(descendant).isDirectory
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Mar 10 01:32:13 UTC 2025
    - 3K bytes
    - Viewed (0)
  8. .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.properties
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  9. 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)
  10. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/CachesCleaner.kt

            // Remove scripts caches
            fileSystemOperations.removeCachedScripts(workerDir.dir("caches").asFile)
    
            // Remove script caches from TestKit integTest temp dir
            // location defined in TempTestKitDirProvider, copied here
            val testKitTmpDir = File(File(System.getProperty("java.io.tmpdir")), ".gradle-test-kit-${System.getProperty("user.name")}")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Jun 28 08:29:28 UTC 2024
    - 4.2K bytes
    - Viewed (1)
Back to top