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. tst_test.sh 9 10do_test() 11{ 12 tst_res TINFO "Start" 13 sleep 5 14 tst_res TFAIL "End" 15} 16 17do_cleanup() 18{ 19 tst_res TINFO "cleanup" 20} 21 22tst_run 23