Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Tests (0.24 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

            group = "verification"
            description = "Runs the cross-version tests against all Gradle versions with 'forking' executer"
        }
    
        val quickFeedbackCrossVersionTests = tasks.register("quickFeedbackCrossVersionTests") {
            group = "verification"
            description = "Runs the cross-version tests against a subset of selected Gradle versions with 'forking' executer for quick feedback"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

            select(
                "testJavaVendor",
                JvmVendor.openjdk.name,
                display = ParameterDisplay.PROMPT,
                description = "The java vendor to run the performance tests",
                options = JvmVendor.values().map { it.displayName to it.name }
            )
            when (os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                }
            }
            failureConditions {
                // We have test-retry to handle the crash in tests
                javaCrash = false
                // We want to see the flaky tests for flakiness detection
                supportTestRetry = (performanceTestBuildSpec.type != PerformanceTestType.flakinessDetection)
            }
            if (testProjects.isNotEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("Tests instantiate DefaultClassLoaderRegistry which requires a 'gradle-plugins.properties' through DefaultPluginModuleRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

    import org.gradle.process.ShellScript
    
    /**
     * Base class for all external process invocation instrumentation tests.
     */
    abstract class AbstractProcessInstrumentationIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        // Note that all tests use a relative path to the script because its absolute path may contain
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/build.gradle.kts

        testImplementation(testFixtures(project(":core-api")))
    
        integTestImplementation(project(":platform-base"))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("Tests instantiate DefaultClassLoaderRegistry which requires a 'gradle-plugins.properties' through DefaultPluginModuleRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-native")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

    fun BuildType.applyPerformanceTestSettings(os: Os = Os.LINUX, arch: Arch = Arch.AMD64, timeout: Int = 30) {
        applyDefaultSettings(os = os, arch = arch, timeout = timeout)
        artifactRules = """
            build/report-*-performance-tests.zip => .
            build/report-*-performance.zip => $hiddenArtifactDestination
            build/report-*PerformanceTest.zip => $hiddenArtifactDestination
        """.trimIndent()
        detectHangingBuilds = false
        requirements {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. gradle.properties

    gradle.internal.testdistribution.queryResponseTimeout=PT20S
    develocity.internal.testdistribution.queryResponseTimeout=PT20S
    # Default performance baseline
    defaultPerformanceBaselines=8.10-commit-fda1ee75173
    
    # Skip dependency analysis for tests
    systemProp.dependency.analysis.test.analysis=false
    
    # List of project that still have dependency analysis warnings
    unmigratedProjects=\
      kotlin-dsl,\
      kotlin-dsl-plugins,\
      kotlin-dsl-provider-plugins,\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-kotlin")
        id("gradlebuild.kotlin-dsl-dependencies-embedded")
        id("gradlebuild.kotlin-dsl-sam-with-receiver")
        id("gradlebuild.kotlin-dsl-plugin-bundle-integ-tests")
    }
    
    description = "Kotlin DSL Provider"
    
    dependencies {
    
        api(project(":kotlin-dsl-tooling-models"))
        api(libs.kotlinStdlib)
        api(libs.kotlinReflect)
    
        implementation(projects.io)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/PluginsDemo.kt

                val app = id("application")
                app.apply(java.apply)
            }
            """.trimIndent()
        )
        printResolutionResults(result)
    
        printResolvedAssignments(result)
    }
    
    
    class Tests {
        @Test
        fun `unit assigned to val is reported as an error`() {
            val result = schema.resolve("val x = plugins { }")
            assertTrue { result.errors.single().errorReason == ErrorReason.UnitAssignment }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top