aboutsummaryrefslogtreecommitdiff
path: root/testcases/kernel/syscalls/getppid/getppid01.c
blob: 57efe1c1f9b0624f709a508604f282bd173dfbb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
 * Copyright (c) Linux Test Project, 2006-2023
 */

/*\
 * [Description]
 *
 * Test whether parent process id that getppid() returns is out of range.
 */

#include <errno.h>
#include "tst_test.h"

static pid_t pid_max;

static void setup(void)
{
	SAFE_FILE_SCANF("/proc/sys/kernel/pid_max", "%d\n", &pid_max);
}

static void verify_getppid(void)
{
	pid_t ppid;

	ppid = getppid();
	if (ppid > pid_max)
		tst_res(TFAIL, "getppid() returned %d, out of range!", ppid);
	else
		tst_res(TPASS, "getppid() returned %d", ppid);
}

static struct tst_test test = {
	.setup = setup,
	.test_all = verify_getppid,
};