• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2018 Linux Test Project
3  * Copyright (C) 2015 Cyril Hrubis <chrubis@suse.cz>
4  * Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
5  *    AUTHOR		: William Roske
6  *    CO-PILOT		: Dave Fenner
7  *    DATE STARTED	: 06/01/02
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <http://www.gnu.org/licenses/>.
21  */
22 
23 #include <sys/types.h>
24 #include <sys/wait.h>
25 #include <errno.h>
26 #include <string.h>
27 #include <stdlib.h>
28 
29 #include "tst_test.h"
30 
verify_execl(void)31 static void verify_execl(void)
32 {
33 	pid_t pid;
34 	char path[512];
35 
36 	if (tst_get_path("execl01_child", path, sizeof(path)))
37 		tst_brk(TCONF, "Couldn't find execl01_child in $PATH");
38 
39 	pid = SAFE_FORK();
40 	if (pid == 0) {
41 		TEST(execl(path, "execl01_child", "canary", NULL));
42 		tst_brk(TFAIL | TERRNO,
43 			"Failed to execute execl01_child");
44 	}
45 }
46 
47 static struct tst_test test = {
48 	.forks_child = 1,
49 	.child_needs_reinit = 1,
50 	.test_all = verify_execl,
51 };
52