• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
3  * Authors: Jinhui huang <huangjh.jy@cn.fujitsu.com>
4  */
5 
6 /*
7  * execveat_errno.c
8  *  dummy program which is used by execveat02.c testcase.
9  */
10 
11 #define TST_NO_DEFAULT_MAIN
12 #include "tst_test.h"
13 
main(void)14 int main(void)
15 {
16 	tst_reinit();
17 	tst_res(TFAIL, "execveat() passes unexpectedly");
18 	return 0;
19 }
20