// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (c) 2018 Linux Test Project * Copyright (C) 2015 Cyril Hrubis * Copyright (c) 2000 Silicon Graphics, Inc. All Rights Reserved. * AUTHOR : William Roske * CO-PILOT : Dave Fenner */ #include #include #include #include #include #include #include "tst_test.h" static void verify_execv(void) { pid_t pid; char *const args[] = { "execv01_child", "canary", NULL}; char path[512]; if (tst_get_path("execv01_child", path, sizeof(path))) tst_brk(TCONF, "Couldn't find execv01_child in $PATH"); pid = SAFE_FORK(); if (pid == 0) { TEST(execv(path, args)); tst_brk(TFAIL | TTERRNO, "Failed to execute execv01_child"); } } static struct tst_test test = { .forks_child = 1, .child_needs_reinit = 1, .test_all = verify_execv, };