Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 220 for executedAndNotSkipped (0.4 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

                    }
                }
            """
            run "mainExecutable"
    
            then:
            executedAndNotSkipped libraryCompileTask
            executedAndNotSkipped ":helloSharedLibrary"
            executedAndNotSkipped mainCompileTask
            executedAndNotSkipped ":linkMainExecutable"
            executedAndNotSkipped ":mainExecutable"
    
            and:
            executable.assertDebugFileDoesNotExist()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/java/compile/AbstractGroovyCompileAvoidanceIntegrationSpec.groovy

            executedAndNotSkipped ":a:compileGroovy"
            executedAndNotSkipped ":b:compileGroovy"
    
            when:
            sourceFile.text = """
                public class ToolImpl {
                    public String thing() { return ""; }
                }
            """
    
            then:
            succeeds ":b:compileGroovy"
            executedAndNotSkipped ":a:compileGroovy"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

            """
    
            when:
            run "signJar"
    
            then:
            executedAndNotSkipped(":signJar")
    
            when:
            buildFile << """
                signing {
                    signatureTypes.defaultType = 'sig'
                }
            """
            run "signJar"
    
            then:
            executedAndNotSkipped(":signJar")
    
            when:
            run "signJar"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

                    }
                }
            '''
    
            when:
            run(':c:run')
    
            then:
            executedAndNotSkipped(":a:${language.compileTaskName}")
            executedAndNotSkipped(":b:${language.compileTaskName}")
            executedAndNotSkipped(":c:${language.compileTaskName}")
            outputContains('greetings')
    
            when:
            run(':c:run')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            target.createFile()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.delete()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

                    violationRules {}
                }
            """
    
            when:
            succeeds TEST_AND_JACOCO_COVERAGE_VERIFICATION_TASK_PATHS
    
            then:
            executedAndNotSkipped(TEST_AND_JACOCO_COVERAGE_VERIFICATION_TASK_PATHS)
        }
    
        def "can define single rule without limits"() {
            given:
            buildFile << """
                jacocoTestCoverageVerification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

                }
            """
    
            when:
            succeeds "customTask"
            then:
            executedAndNotSkipped ":customTask"
    
            when:
            succeeds "customTask", "-PoutputFile=log.txt"
            then:
            executedAndNotSkipped ":customTask"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/3073")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            run "visualStudio"
    
            then:
            executedAndNotSkipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("app")
    
            when:
            copyFile(file("src/main/cpp/main.cpp"), file("src/main/cpp/foo.cpp"))
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("app")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

            expect:
            succeeds "a"
            executedAndNotSkipped(":a", ":upstream:a", ":downstream:a")
    
            when:
            file("A").text = "A"
    
            then:
            buildTriggeredAndSucceeded()
            executedAndNotSkipped(":a", ":upstream:a", ":downstream:a")
    
            expect:
            succeeds(":downstream:a")
            executedAndNotSkipped(":downstream:a")
            notExecuted(":a", ":upstream:a")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

            when:
            withWatchFs().run ":consumer"
            then:
            executedAndNotSkipped(":sourceTask", ":consumer")
            outputFile.assertExists()
    
            when:
            sourceFile.delete()
            waitForChangesToBePickedUp()
            withWatchFs().run ":consumer"
            then:
            executedAndNotSkipped(":sourceTask", ":consumer")
            outputFile.assertDoesNotExist()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top