14 lines
188 B
Bash
14 lines
188 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
testdir=$(readlink -f $(dirname $0))
|
||
|
rootdir=$testdir/../../..
|
||
|
source $rootdir/scripts/autotest_common.sh
|
||
|
|
||
|
timing_enter log
|
||
|
|
||
|
$testdir/log_ut
|
||
|
|
||
|
timing_exit log
|