Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for assertDebugFileDoesNotExist (0.43 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

                it.assertDebugFileExists()
                it.exec().out == helloWorldApp.frenchOutput
            }
            with (executable("build/exe/main/release/main")) {
                it.assertExists()
                it.assertDebugFileDoesNotExist()
                it.exec().out == helloWorldApp.englishOutput
            }
        }
    
        @ToBeFixedForConfigurationCache
        def "configure component for a single build type"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

            if (toolChain.visualCpp) {
                getSymbolFile().assertIsFile()
            }
        }
    
        // Does nothing when tool chain does not generate a separate debug file
        void assertDebugFileDoesNotExist() {
            if (toolChain.visualCpp) {
                getSymbolFile().assertDoesNotExist()
            }
        }
    
        private TestFile getSymbolFile() {
            if (toolChain?.visualCpp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            debugX86.arch.name == "x86"
            debugX86.assertDebugFileExists()
            debugX86.exec().out == "Hello world!\n"
    
            releaseX86.arch.name == "x86"
            releaseX86.assertDebugFileDoesNotExist()
            releaseX86.exec().out == "Hello world!\n"
    
            debugX64.arch.name == "x86-64"
            releaseX64.arch.name == "x86-64"
    
            // Itanium not built
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            executedAndNotSkipped mainCompileTask
            executedAndNotSkipped ":linkMainExecutable"
            executedAndNotSkipped ":mainExecutable"
    
            and:
            executable.assertDebugFileDoesNotExist()
        }
    
        @Issue("GRADLE-3248")
        @ToBeFixedForConfigurationCache
        def "incremental compilation isn't considered up-to-date when compilation fails"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top