887aff4d09
It's always set in autotest_common.sh, there's no need to set it again in each test script. Change-Id: Ib14c4189c553dad54a3065c1a1d413a5fc5a5347 Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/457466 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
19 lines
371 B
Bash
Executable File
19 lines
371 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
timing_enter ioat
|
|
|
|
timing_enter perf
|
|
$rootdir/examples/ioat/perf/ioat_perf -t 1
|
|
timing_exit perf
|
|
|
|
timing_enter verify
|
|
$rootdir/examples/ioat/verify/verify -t 1
|
|
timing_exit verify
|
|
|
|
report_test_completion "ioat"
|
|
timing_exit ioat
|