Now that unittest.sh is run as part of the automated tests, drop the various unit test calls scattered throughout the tree. Change-Id: Iea98314bb7f04620d72d81d25e24f8e706b50ce1 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
20 lines
331 B
Bash
Executable File
20 lines
331 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -xe
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir="$testdir/../../.."
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
timing_enter ioat
|
|
|
|
timing_enter perf
|
|
$rootdir/examples/ioat/perf/perf -t 1
|
|
timing_exit perf
|
|
|
|
timing_enter verify
|
|
$rootdir/examples/ioat/verify/verify -t 1
|
|
timing_exit verify
|
|
|
|
timing_exit ioat
|