Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for debugX86 (0.14 sec)

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

            final releaseIA64 = executable(variants.dir.file("build/exe/main/itanium/release/main"))
    
            debugX86.arch.name == "x86"
            debugX86.assertDebugFileExists()
            debugX86.exec().out == "Hello world!\n"
    
            releaseX86.arch.name == "x86"
            releaseX86.assertDebugFileDoesNotExist()
            releaseX86.exec().out == "Hello world!\n"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

            def debugX86Binary = project.mainComponent.binaries[0]
            debugX86Binary instanceof CppExecutable
            debugX86Binary.name == 'mainDebugX86'
            debugX86Binary.variantName == 'debugX86'
            debugX86Binary.baseName == 'app'
            debugX86Binary.compilationDetails.sources.sourceFile as Set == [src1, src2] as Set
            debugX86Binary.compilationDetails.sources.objectFile.each { assert it != null }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

                    .withSolution(solutionFile)
                    .withConfiguration("debugX86")
                    .withProject(visualStudioProjectName)
                    .succeeds()
    
            then:
            resultDebug.size() == 1
            resultDebug[0].assertTasksExecuted(getTasksToBuildFromIde("debugX86"))
            file(getBuildFile(VariantContext.of(buildType: 'debug', architecture: 'x86'))).assertIsFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            when:
            debugBinary.assertDoesNotExist()
            def resultDebug = xcodebuild
                    .withProject(rootXcodeProject)
                    .withScheme('App')
                    .withConfiguration("DebugX86-64")
                    .succeeds()
    
            then:
            resultDebug.assertTasksExecuted(':compileDebugX86-64Cpp', ':linkDebugX86-64', ':installDebugX86-64', ':_xcode___App_DebugX86-64')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
Back to top