Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertDoesNotHaveDebugSymbolsFor (0.41 sec)

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

            then:
            executedAndNotSkipped":stripSymbolsDebug"
            executable("build/exe/main/debug/app").assertHasDebugSymbolsFor(withoutHeaders(app.original))
            binary("build/stripped").assertDoesNotHaveDebugSymbolsFor(withoutHeaders(app.original))
        }
    
        @ToBeFixedForConfigurationCache
        def "strip is skipped when there are no changes"() {
            when:
            succeeds ":stripSymbolsDebug"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

                assertDebugFileExists()
            } else {
                assertHasDebugSymbolsFor(sourceFileNames)
                strippedBinaryFixture.assertDoesNotHaveDebugSymbolsFor(sourceFileNames)
                symbolFileFixture.assertHasDebugSymbolsFor(sourceFileNames)
            }
        }
    
        void assertHasDebugSymbolsFor(List<String> sourceFileNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top