xref: /aosp_15_r20/external/ltp/lib/newlib_tests/shell/timeout04.sh (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0-or-later
3# Copyright (c) 2021 Joerg Vehlow <[email protected]>
4
5TST_TESTFUNC=do_test
6
7TST_TIMEOUT=1
8
9do_test()
10{
11    tst_res TINFO "Start"
12    sleep 5
13    tst_res TFAIL "End"
14}
15
16do_cleanup()
17{
18    tst_res TINFO "cleanup"
19}
20
21. tst_test.sh
22tst_run
23