2015-12-03 21:30:38 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
2018-03-22 22:26:12 +00:00
|
|
|
rootdir=$(readlink -f $testdir/../..)
|
2018-02-27 22:14:08 +00:00
|
|
|
source $rootdir/test/common/autotest_common.sh
|
2015-12-03 21:30:38 +00:00
|
|
|
|
|
|
|
timing_enter ioat
|
|
|
|
|
|
|
|
timing_enter perf
|
2016-08-19 17:34:06 +00:00
|
|
|
$rootdir/examples/ioat/perf/perf -t 1
|
2015-12-03 21:30:38 +00:00
|
|
|
timing_exit perf
|
|
|
|
|
|
|
|
timing_enter verify
|
2016-08-19 17:34:06 +00:00
|
|
|
$rootdir/examples/ioat/verify/verify -t 1
|
2015-12-03 21:30:38 +00:00
|
|
|
timing_exit verify
|
|
|
|
|
2017-12-18 21:20:41 +00:00
|
|
|
report_test_completion "ioat"
|
2015-12-03 21:30:38 +00:00
|
|
|
timing_exit ioat
|