Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SOAK (0.01 sec)

  1. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                            ),
                            TestCoverage(8, TestType.SOAK, Os.LINUX, JvmCategory.MAX_LTS_VERSION, 1),
                            TestCoverage(9, TestType.SOAK, Os.WINDOWS, JvmCategory.MIN_VERSION, 1),
                            TestCoverage(35, TestType.SOAK, Os.MACOS, JvmCategory.MAX_LTS_VERSION, 1, arch = Arch.AARCH64),
                            TestCoverage(
                                10,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 05 13:00:26 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  2. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                    File(it, "src/integTest").exists() &&
                        it.name != "distributions-integ-tests" &&
                        // distributions:integTest is part of Build Distributions
                        it.name != "soak" // soak tests have their own test category
                }
    
            assertFalse(projectFoldersWithFunctionalTests.isEmpty())
            projectFoldersWithFunctionalTests.forEach {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 01:27:05 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

                preSteps = preBuildSteps,
            )
    
            failureConditions {
                // JavaExecDebugIntegrationTest.debug session fails without debugger might cause JVM crash
                // Some soak tests produce OOM exceptions
                // There are also random worker crashes for some tests.
                // We have test-retry to handle the crash in tests
                javaCrash = false
            }
        })
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 09 05:26:45 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

     *
     * Our performance tests don't work with PTS, yet.
     * Smoke and soak tests are hard to grasp for PTS, that is why we run them without.
     * When running on Windows with PTS, SimplifiedKotlinScriptEvaluatorTest fails. See https://github.com/gradle/gradle-private/issues/3615.
     */
    fun Project.supportsPredictiveTestSelection() = !isPerformanceProject() && !setOf("smoke-test", "soak", "kotlin-dsl", "smoke-ide-test").contains(name)
    
    /**
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/projects/StageProject.kt

                stage.flameGraphs.map { createFlameGraphs(model, stage, it) }
    
            val (topLevelCoverage, allCoverage) = stage.functionalTests.partition { it.testType == TestType.SOAK }
            val topLevelFunctionalTests =
                topLevelCoverage
                    .map { FunctionalTest(model, it.asConfigurationId(model), it.asName(), it.asName(), it, stage = stage) }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 00:34:25 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. .github/CODEOWNERS

    testing/smoke-test/                             @gradle/bt-product-operations
    testing/smoke-test/src/**/*IsolatedProjects*    @gradle/bt-product-operations @gradle/bt-isolated-projects-project
    testing/soak/                                   @gradle/bt-developer-productivity
    testing/distributions-integ-tests               @gradle/bt-developer-productivity
    testing/public-api-tests                        @gradle/bt-developer-productivity
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Nov 07 21:47:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  7. .teamcity/subprojects.json

        "name": "snapshots",
        "path": "platforms/core-execution/snapshots",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "soak",
        "path": "testing/soak",
        "unitTests": false,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "software-diagnostics",
        "path": "platforms/software/software-diagnostics",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 18 18:40:11 UTC 2025
    - 37.5K bytes
    - Viewed (0)
  8. .idea/gradle.xml

                <option value="$PROJECT_DIR$/testing/smoke-ide-test" />
                <option value="$PROJECT_DIR$/testing/smoke-test" />
                <option value="$PROJECT_DIR$/testing/soak" />
              </set>
            </option>
          </GradleProjectSettings>
        </option>
        <option name="parallelModelFetch" value="true" />
      </component>
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 11 18:02:10 UTC 2025
    - 23.2K bytes
    - Viewed (0)
Back to top