Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for assertNotInstalled (0.23 sec)

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

            file("app/build/exe/main/debug").assertDoesNotExist()
            file("app/build/obj/main/debug").assertDoesNotExist()
            installation("app/build/install/main/debug").assertNotInstalled()
    
            sharedLibrary("greeter/build/lib/main/debug/greeter").assertExists()
            file("greeter/build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(app.library.alternate))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeInstallationFixture.groovy

            def libDir = installDir.file("lib")
            libDir.assertIsDir()
            libDir.file(os.getExecutableName(script.name)).assertIsFile()
            this
        }
    
        NativeInstallationFixture assertNotInstalled() {
            installDir.assertDoesNotExist()
            this
        }
    
        NativeInstallationFixture assertIncludesLibraries(String... names) {
            def expected = names.collect { os.getSharedLibraryName(it) } as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppBinariesRelocationIntegrationTest.groovy

            relocatedInstall.assertInstalled()
            relocatedInstall.exec()
    
            when:
            succeeds("clean")
    
            then:
            install.assertNotInstalled()
    
            and:
            relocatedInstall.assertInstalled()
            relocatedInstall.exec()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            file("app/build/exe/main/debug").assertDoesNotExist()
            file("app/build/obj/main/debug").assertDoesNotExist()
            installation("app/build/install/main/debug").assertNotInstalled()
    
            outputs.noneRecompiled()
            sharedLibrary("greeter/build/lib/main/debug/Greeter").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            resultUnbuildableSolution[0].assertOutputContains('The project "libLib" is not selected for building in solution configuration "unbuildable|Win32".')
            installation('exe/build/install/main/debug').assertNotInstalled()
    
            when:
            def resultDebug = msbuild
                    .withSolution(solutionFile('app.sln'))
                    .withConfiguration('debug')
                    .fails()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top