You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
257 B
16 lines
257 B
4 months ago
|
#!/bin/sh
|
||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
# Copyright (c) 2019 Petr Vorel <pvorel@suse.cz>
|
||
|
|
||
|
TST_TESTFUNC=do_test
|
||
|
|
||
|
TST_TIMEOUT=2
|
||
|
. tst_test.sh
|
||
|
|
||
|
do_test()
|
||
|
{
|
||
|
tst_res TPASS "timeout $TST_TIMEOUT set (LTP_TIMEOUT_MUL='$LTP_TIMEOUT_MUL')"
|
||
|
}
|
||
|
|
||
|
tst_run
|