vcpkg/scripts/test_ports/unit-test-cmake/vcpkg.json
Kai Pastor 5a5242aee4
[world rebuild][vcpkg scripts] Test, fix, extend vcpkg_execute_required_process (#39445)
Fixes `OUTPUT_VARIABLE`, `ERROR_VARIABLE`. 

vcpkg always wants logfiles. CMake (`execute_process`) doesn't send
stdout/stderr to files and variables at the same time, and even "the
precedence is not specified". So simultaneous output has to be handled
in `vcpkg_execute_required_process`.

At this occasion, port the arguments for stripping trailing whitespace.

`tensorflow-common` implicitly relied on the broken behavior. I chose
the minimal fix: drop the pointless calls, just set the empty value.
2024-06-28 22:21:10 -07:00

62 lines
1.6 KiB
JSON

{
"name": "unit-test-cmake",
"version-string": "ci",
"description": "Ensures that the CMake scripts are unit tested.",
"license": "MIT",
"supports": "x64",
"default-features": [
"backup-restore-env-vars",
"execute-required-process",
"fixup-pkgconfig",
{
"name": "fixup-rpath",
"platform": "!windows"
},
"function-arguments",
"host-path-list",
"list",
"merge-libs",
"minimum-required",
"setup-pkgconfig-path"
],
"features": {
"backup-restore-env-vars": {
"description": "Test the vcpkg_backup/restore_env_vars functions"
},
"execute-required-process": {
"description": "Test the vcpkg_execute_required_process function"
},
"fixup-pkgconfig": {
"description": "Test the vcpkg_fixup_pkgconfig function"
},
"fixup-rpath": {
"description": "Test the rpath fixup function",
"supports": "!windows"
},
"function-arguments": {
"description": "Test the z_vcpkg_function_arguments function"
},
"host-path-list": {
"description": "Test the vcpkg_host_path_list function"
},
"list": {
"description": "Test the vcpkg_list function"
},
"merge-libs": {
"description": "Test the z_vcpkg_cmake_config_fixup_merge_lists function",
"dependencies": [
{
"name": "vcpkg-cmake-config",
"host": true
}
]
},
"minimum-required": {
"description": "Test the vcpkg_minimum_required function"
},
"setup-pkgconfig-path": {
"description": "Test the z_vcpkg_setup/restore_pkgconfig_path functions"
}
}
}