Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stopGradle (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

        List<ExecutionResult> results = []
    
        void turnOnDebug() {
            executer.startBuildProcessInDebugger(true)
            buildTimeout *= 100
        }
    
        def cleanup() {
            stopGradle()
            if (OperatingSystem.current().isWindows()) {
                // needs delay to release file handles
                sleep(500L)
            }
        }
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationsContinuousIntegrationTest.groovy

            succeeds("test")
    
            when:
            update(file("src/test/java/org/gradle/OtherTest.java"), file("src/test/java/org/gradle/OtherTest.java").text.replace("Assert.fail();", ""))
            waitForBuild()
            stopGradle()
            afterBuild()
    
            then: "test build operations are emitted in expected hierarchy"
            def testRootOperations = operations.all(ExecuteTestBuildOperationType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top