1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0-or-later
3# Copyright (c) 2021 Joerg Vehlow <joerg.vehlow@aox-tech.de>
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