Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for assertHasDebugSymbolsFor (0.42 sec)

  1. 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) {
            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)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/ExtractSymbolsIntegrationTest.groovy

        def "extracts symbols from binary"() {
            when:
            succeeds ":extractSymbolsDebug"
    
            then:
            executedAndNotSkipped":extractSymbolsDebug"
            fixture("build/symbols").assertHasDebugSymbolsFor(withoutHeaders(app.original))
        }
    
        @ToBeFixedForConfigurationCache
        def "extract is skipped when there are no changes"() {
            when:
            succeeds ":extractSymbolsDebug"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            resultDebug.assertTasksNotSkipped(':compileDebugCpp', ':linkDebug', ':installDebug', ':_xcode___App_Debug')
            debugBinary.exec().out == app.expectedOutput
            fixture(debugBinary).assertHasDebugSymbolsFor(app.sourceFileNamesWithoutHeaders)
    
            when:
            releaseBinary.assertDoesNotExist()
            def resultRelease = xcodebuild
                .withProject(rootXcodeProject)
                .withScheme('App')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

            resultDebug.assertTasksNotSkipped(':compileDebugSwift', ':linkDebug', ':installDebug', ':_xcode___App_Debug')
            debugBinary.exec().out == app.expectedOutput
            fixture(debugBinary).assertHasDebugSymbolsFor(app.sourceFileNames)
    
            when:
            releaseBinary.assertDoesNotExist()
            def resultRelease = xcodebuild
                .withProject(rootXcodeProject)
                .withScheme('App')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            sharedLibrary("hello/build/lib/main/release/Greeter").assertExists()
            sharedLibrary("hello/build/lib/main/release/Greeter").assertHasDebugSymbolsFor(['greeter.o'])
            executable("app/build/exe/main/release/App").assertHasDebugSymbolsFor(['main.o'])
            executable("app/build/exe/main/release/App").exec().out == app.withFeatureEnabled().expectedOutput
    
            succeeds ":app:linkDebug"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/StripSymbolsIntegrationTest.groovy

        def "strips symbols from binary"() {
            when:
            succeeds ":stripSymbolsDebug"
    
            then:
            executedAndNotSkipped":stripSymbolsDebug"
            executable("build/exe/main/debug/app").assertHasDebugSymbolsFor(withoutHeaders(app.original))
            binary("build/stripped").assertDoesNotHaveDebugSymbolsFor(withoutHeaders(app.original))
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            executable("app/build/exe/main/debug/app").assertExists()
            executable("app/build/exe/main/debug/app").assertHasDebugSymbolsFor(app.main.sourceFileNames)
            sharedLibrary("hello/build/lib/main/debug/hello").assertExists()
            sharedLibrary("hello/build/lib/main/debug/hello").assertHasDebugSymbolsFor(app.greeterLib.sourceFileNamesWithoutHeaders)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

            sharedLibrary("log/build/lib/main/release/Log").assertExists()
            sharedLibrary("log/build/lib/main/release/Log").assertHasDebugSymbolsFor(['log.o'])
        }
    
        def "can change default module name and successfully link against library"() {
            createDirs("lib1", "lib2")
            settingsFile << "include 'lib1', 'lib2'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            result.assertTasksExecuted(tasks.debug.allToLink, tasks.debug.assemble)
            sharedLibrary("build/lib/main/debug/hello").assertExists()
            sharedLibrary("build/lib/main/debug/hello").assertHasDebugSymbolsFor(lib.sourceFileNamesWithoutHeaders)
            !output.contains('compiling with feature enabled')
        }
    
        @ToBeFixedForConfigurationCache
        def "can use link file as task dependency"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
Back to top