The new env library will wrap all third-party library calls and be easily swappable with alternate implementations at build time. For now, it's just the memory library renamed. Change-Id: I26a70933289f8137107208ba75f7520fd7a33da0 Signed-off-by: Ben Walker <benjamin.walker@intel.com>
16 lines
231 B
Bash
Executable File
16 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir="$testdir/../../.."
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
timing_enter env
|
|
|
|
timing_enter vtophys
|
|
$testdir/vtophys
|
|
timing_exit vtophys
|
|
|
|
timing_exit env
|