11 lines
230 B
Bash
11 lines
230 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
testdir=$(readlink -f $(dirname $0))
|
||
|
rootdir=$testdir/../../..
|
||
|
source $rootdir/scripts/autotest_common.sh
|
||
|
|
||
|
timing_enter event
|
||
|
$testdir/event/event -m 0xF -t 5
|
||
|
$testdir/subsystem/subsystem_ut
|
||
|
timing_exit event
|