Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for DistributionTest (0.28 sec)

  1. 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
    
        /**
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Jul 01 22:53:59 GMT 2022
    - 8K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

    fun executerRequiresFullDistribution(taskName: String) =
        taskName.startsWith("noDaemon")
    
    fun DistributionTest.addSetUpAndTearDownActions() {
        cachesCleaner = cachesCleanerService
        gradle.rootBuild().sharedServices.registrations.findByName("daemonTracker")?.let {
            tracker = it.service
        }
    }
    
    fun DistributionTest.configureGradleTestEnvironment() {
        val taskName = name
    
        gradleInstallationForTest.apply {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Nov 28 20:40:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  3. 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 gradlebuild.binarycompatibility.JapicmpTask
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jan 20 15:24:41 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  4. 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"
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 29 10:30:14 GMT 2023
    - 1K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeTest.kt

    import org.gradle.api.tasks.CacheableTask
    
    
    /**
     * A test that verifies Gradle can be used with popular third party plugins.
     */
    @CacheableTask
    abstract class SmokeTest : DistributionTest() {
        override val prefix = "smoke"
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 889 bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/IntegrationTest.kt

     * Usually referred to as 'functional tests' in literature, but our code base has historically
     * been using the term 'integration test'.
     */
    @CacheableTask
    abstract class IntegrationTest : DistributionTest() {
    
        override val prefix = if (name.contains("CrossVersion")) "crossVersion" else "integ"
    
        @InputDirectory
        @PathSensitive(PathSensitivity.RELATIVE)
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2K bytes
    - Viewed (0)
  7. 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.IntegrationTest
    import gradlebuild.modules.extension.ExternalModulesExtension
    import gradlebuild.testing.services.BuildBucketProvider
    import org.gradle.api.Action
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
Back to top