Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for assertHasDebugSymbolsFor (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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