• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Shell test example.
4  */
5 
6 #include "tst_test.h"
7 
run_test(void)8 static void run_test(void)
9 {
10 	tst_run_script("shell_test_pass.sh", NULL);
11 	tst_reap_children();
12 	tst_res(TINFO, "Shell test has finished at this point!");
13 }
14 
15 static struct tst_test test = {
16 	.runs_script = 1,
17 	.test_all = run_test,
18 };
19