WIFEXITED requires <sys/wait.h> header. On some platforms, the transitive includes have this symbol, but not all.
This commit is contained in:
Siyuan Ren 2024-10-22 07:01:51 +08:00 коммит произвёл GitHub
Родитель ad7b71c9fc
Коммит 39396a70ba
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -2,6 +2,10 @@
#include <vcpkg/base/system.process.h>
#ifndef _WIN32
#include <sys/wait.h>
#endif
using namespace vcpkg;
TEST_CASE ("captures-output", "[system.process]")