Change-Id: Iad372db86857ce92145388279e5095b17efe3983 Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.gerrithub.io/375829 Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
24 lines
372 B
Bash
Executable File
24 lines
372 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
source $rootdir/scripts/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
|
|
|
|
timing_exit env
|