Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for machOBundle (0.6 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithoutComponentIntegrationTest.groovy

                executable("build/exe/test/${componentUnderTest.moduleName}").assertExists()
                installation("build/install/test").assertInstalled()
            } else {
                machOBundle("build/exe/test/${componentUnderTest.moduleName}").assertExists()
                file("build/install/test/${componentUnderTest.moduleName}").assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest.groovy

                executable("build/exe/test/${componentUnderTest.test.moduleName}").assertExists()
                installation("build/install/test").assertInstalled()
            } else {
                machOBundle("build/exe/test/${componentUnderTest.test.moduleName}").assertExists()
                file("build/install/test/${componentUnderTest.test.moduleName}").assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AbstractInstalledToolChainIntegrationSpec.groovy

            return toolChain.staticLibrary(file(path))
        }
    
        NativeBinaryFixture resourceOnlyLibrary(Object path) {
            return toolChain.resourceOnlyLibrary(file(path))
        }
    
        NativeBinaryFixture machOBundle(Object path) {
            return new NativeBinaryFixture(file(path), toolChain)
        }
    
        def objectFileFor(File sourceFile, String rootObjectFilesDir = "build/objs/main/main${sourceType}") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

            result.assertTasksExecuted(tasks.debug.compile, tasks.test.allToInstall, ":xcTest", ":test")
            assertMainSymbolIsAbsent(objectFiles(maybeWithLinuxMain(lib.test), "build/obj/test"))
            assertMainSymbolIsAbsent(machOBundle("build/exe/test/${lib.test.moduleName}"))
            lib.assertTestCasesRan(testExecutionResult)
        }
    
        @ToBeFixedForConfigurationCache
        def "relinks when main sources change in ABI compatible way"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
Back to top