/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/env-i.c
19 строк
347 B
Dmitry V. Levin
tests: robustify status-detached.test
11 май 2026, 11:00
11 май 2026, 11:00
a746119
Код
Авторство
О чём код?
/* * Copyright (c) 2026 Dmitry V. Levin <ldv@strace.io> * All rights reserved. * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "tests.h" #include <unistd.h> int main(int argc, char **argv) { if (argc < 2) error_msg_and_fail("argc < 2"); (void) execve(argv[1], argv + 1, NULL); perror_msg_and_fail("execve: %s", argv[1]); }