Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for recompiledFile (0.17 sec)

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

            when:
            sourceFile << """
    // Changed source file
    """
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped compileTask
    
            and:
            outputs.recompiledFile sourceFile
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles all source files that include changed header file"() {
            given:
            outputs.snapshot { run "mainExecutable" }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

            and:
            succeeds("assemble")
    
            then:
            outputs.recompiledFile(main)
    
            when:
            outputs.snapshot()
            main.replace("a: 21, b: 21", "a: 5, b: 7")
            succeeds("compileDebugSwift")
    
            then:
            outputs.recompiledFile(main)
        }
    
        def 'adding a new file only compiles new file'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            } else {
                skipped libraryDebug.link
                skipped appDebug.link, installApp
            }
    
            and:
            appObjects.recompiledFile(appSourceFile)
            libObjects.recompiledFiles(librarySourceFile, libraryOtherSourceFile)
    
            when:
            run installApp
    
            then:
            allSkipped()
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            outputs.snapshot { run "compileJava" }
    
            when:
            a.text = "@Helper class A { public void foo() {} }"
            run "compileJava"
    
            then:
            outputs.recompiledFiles("A", "AHelper", "AHelperResource.txt")
        }
    
        @Issue("https://github.com/micronaut-projects/micronaut-core/issues/6536")
        def "remembers generated files across multiple compilations"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            outputs.snapshot { run "compileJava" }
    
            when:
            a.text = "@Service class A { public void foo() {} }"
            run "compileJava"
    
            then:
            outputs.recompiledFiles("A", "ServiceRegistry", "ServiceRegistryResource.txt")
            serviceRegistryReferences("A", "B")
        }
    
        def "incremental processing works on subsequent incremental compilations after failure"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top