Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for exeExecutable (0.13 sec)

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

                targetPlatform "x86"
            }
        }
    }
    """
    
            and:
            succeeds "exeExecutable"
    
            then:
            // Platform dimension is flattened since there is only one possible value
            executedAndNotSkipped(":exeExecutable")
            executable("build/exe/exe/exe").arch.name == "x86"
            executable("build/exe/exe/exe").exec().out == "i386 ${os.familyName}" * 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                    lib(NativeLibrarySpec)
                }
            }
    
            then:
            NativeExecutableBinarySpec executableBinary = binaries.exeExecutable as NativeExecutableBinarySpec
            with(oneTask(executableBinary.buildDependencies)) {
                name == "exeExecutable"
                group == LifecycleBasePlugin.BUILD_GROUP
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top