• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2016 Linux Test Project
4  */
5 
6 /*
7  * Test for watchdog timeout.
8  */
9 
10 #include "tst_test.h"
11 
12 
do_test(void)13 static void do_test(void)
14 {
15 	sleep(2);
16 	tst_res(TPASS, "Not reached");
17 }
18 
19 static struct tst_test test = {
20 	.test_all = do_test,
21 	.timeout = 1,
22 };
23