dc14118bb2
Change-Id: Ic22806e7c85f579329ac43b9a4e31eab2a14f1c0 Signed-off-by: Seth Howell <seth.howell@intel.com> Reviewed-on: https://review.gerrithub.io/404978 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
25 lines
402 B
Bash
Executable File
25 lines
402 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
timing_enter env
|
|
|
|
timing_enter memory
|
|
$testdir/memory/memory_ut
|
|
timing_exit memory
|
|
|
|
timing_enter vtophys
|
|
$testdir/vtophys/vtophys
|
|
timing_exit vtophys
|
|
|
|
timing_enter pci
|
|
$testdir/pci/pci_ut
|
|
timing_exit pci
|
|
|
|
report_test_completion "env"
|
|
timing_exit env
|