Change-Id: Ie96943f40ea8be4156d55bc5eeacc567743cf9d6 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
16 lines
246 B
Bash
Executable File
16 lines
246 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 scsi
|
|
|
|
$testdir/dev/dev_ut
|
|
$testdir/lun/lun_ut
|
|
$testdir/scsi_bdev/scsi_bdev_ut
|
|
|
|
timing_exit scsi
|