You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
385 B
15 lines
385 B
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
|
|
* Authors: Jinhui huang <huangjh.jy@cn.fujitsu.com>
|
|
* Xiao Yang <yangx.jy@cn.fujitsu.com>
|
|
*/
|
|
|
|
void check_execveat(void)
|
|
{
|
|
int ret;
|
|
|
|
ret = execveat(-1, "", NULL, NULL, AT_EMPTY_PATH);
|
|
if (ret == -1 && errno == EINVAL)
|
|
tst_brk(TCONF, "execveat() not supported");
|
|
}
|