Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for assertHasDebugSymbolsFor (0.51 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top