17 lines
780 B
Bash
17 lines
780 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
testdir=$(readlink -f $(dirname $0))
|
||
|
rootdir=$(readlink -f $testdir/../..)
|
||
|
source $rootdir/test/common/autotest_common.sh
|
||
|
|
||
|
#Run through all SW ops with defaults for a quick sanity check
|
||
|
#To save time, only use verification case
|
||
|
run_test "accel" $SPDK_EXAMPLE_DIR/accel_perf -t 1 -w crc32c -y
|
||
|
run_test "accel" $SPDK_EXAMPLE_DIR/accel_perf -t 1 -w crc32c -y -C 2
|
||
|
run_test "accel" $SPDK_EXAMPLE_DIR/accel_perf -t 1 -w copy -y
|
||
|
run_test "accel" $SPDK_EXAMPLE_DIR/accel_perf -t 1 -w fill -y
|
||
|
run_test "accel" $SPDK_EXAMPLE_DIR/accel_perf -t 1 -w copy_crc32c -y
|
||
|
run_test "accel" $SPDK_EXAMPLE_DIR/accel_perf -t 1 -w copy_crc32c -y -C 2
|
||
|
run_test "accel" $SPDK_EXAMPLE_DIR/accel_perf -t 1 -w dualcast -y
|
||
|
run_test "accel" $SPDK_EXAMPLE_DIR/accel_perf -t 1 -w compare -y
|