Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for debugInstall (0.14 sec)

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

            when:
            executer.inDirectory(consumer)
            run("installDebug")
    
            then:
            def debugInstall = installation(consumer.file("build/install/main/debug"))
            debugInstall.exec().out == app.withFeatureDisabled().expectedOutput
            debugInstall.assertIncludesLibraries()
    
            when:
            executer.inDirectory(consumer)
            run("installRelease")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithBothLinkagePublishingIntegrationTest.groovy

            when:
            executer.inDirectory(consumer)
            run("installDebug")
    
            then:
            def debugInstall = installation(consumer.file("build/install/main/debug"))
            debugInstall.exec().out == app.withFeatureDisabled().expectedOutput
            debugInstall.assertIncludesLibraries("greeting")
            def debugLib = sharedLibrary(producer.file("build/lib/main/debug/shared/greeting"))
    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/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            then:
            project.tasks['assemble'] TaskDependencyMatchers.dependsOn()
        }
    
        def "assemble task builds outputs of development binary of main component"() {
            def binary1 = binary('debug', 'debugInstall')
            def binary2 = binary('release', 'releaseInstall')
            def binaries = new DefaultBinaryCollection(SoftwareComponent)
            binaries.add(binary1)
            binaries.add(binary2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            when:
            executer.inDirectory(consumer)
            run("installDebug")
    
            then:
            def debugInstall = installation(consumer.file("build/install/main/debug"))
            debugInstall.exec().out == app.withFeatureDisabled().expectedOutput
            debugInstall.assertIncludesLibraries("greeting")
            def debugLib = sharedLibrary(producer.file("build/lib/main/debug/greeting"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
Back to top