ut/idxd: do not run idxd_ut when not compiled
idxd support is disabled by default right now due to being experimental. Running unittest.sh would cause failure in such case. With this patch idxd_ut only runs when it was compiled in. Verifying if the UT was executed is done in post_processing.py, by verifying every 'run_test' was executed. Meaning that CI makes sure it is executed. resolves #1369 Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: Iafbc84839aa9dc62ead8821da8b860e1741e3624 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2012 Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
parent
b3348624e7
commit
b75e7bd261
@ -181,7 +181,7 @@ if [ $(uname -s) = Linux ]; then
|
||||
fi
|
||||
|
||||
run_test "unittest_ioat" $valgrind $testdir/lib/ioat/ioat.c/ioat_ut
|
||||
if [ $(uname -m) != "aarch64" ]; then
|
||||
if grep -q '#define SPDK_CONFIG_IDXD 1' $rootdir/include/spdk/config.h; then
|
||||
run_test "unittest_idxd" $valgrind $testdir/lib/idxd/idxd.c/idxd_ut
|
||||
fi
|
||||
run_test "unittest_iscsi" unittest_iscsi
|
||||
|
Loading…
Reference in New Issue
Block a user