Change-Id: I9606b82dbfaa6c84d8dafc07fb76a113e3436083 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
18 lines
297 B
Bash
Executable File
18 lines
297 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -xe
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$testdir/../../..
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
timing_enter nvmf
|
|
|
|
timing_enter unit
|
|
$testdir/request/request_ut
|
|
$testdir/session/session_ut
|
|
$testdir/subsystem/subsystem_ut
|
|
timing_exit unit
|
|
|
|
timing_exit nvmf
|