From 9c8937cfd8a54e4a8556f34d70c8414bfdbe6d6a Mon Sep 17 00:00:00 2001 From: Darek Stojaczyk Date: Wed, 5 Jun 2019 11:16:55 +0200 Subject: [PATCH] test/json_config: disable vhost-nvme tests We're about to make SPDK vhost work against the upstream rte_vhost from DPDK 19.05+ and vhost-nvme tests currently stay in the way. vhost-nvme is only supported in our modified rte_vhost fork and while it could be implemented entirely in SPDK against the latest upstream rte_vhost APIs, there are just no plans to do that now. For that reason we disable all vhost-nvme tests. Change-Id: I2d43bbe75dcab7535e7b1254ca75cb78b6d446fa Signed-off-by: Darek Stojaczyk Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/456960 Tested-by: SPDK CI Jenkins Reviewed-by: Ben Walker Reviewed-by: Changpeng Liu --- test/json_config/json_config.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/json_config/json_config.sh b/test/json_config/json_config.sh index 75ba1eb1a..362008ead 100755 --- a/test/json_config/json_config.sh +++ b/test/json_config/json_config.sh @@ -277,8 +277,9 @@ function create_vhost_subsystem_config() { tgt_rpc construct_vhost_blk_controller VhostBlkCtrlr0 MallocForVhost0p5 - tgt_rpc construct_vhost_nvme_controller VhostNvmeCtrlr0 16 - tgt_rpc add_vhost_nvme_ns VhostNvmeCtrlr0 MallocForVhost0p6 +# FIXME: enable after vhost-nvme is properly implemented against the latest rte_vhost (DPDK 19.05+) +# tgt_rpc construct_vhost_nvme_controller VhostNvmeCtrlr0 16 +# tgt_rpc add_vhost_nvme_ns VhostNvmeCtrlr0 MallocForVhost0p6 timing_exit $FUNCNAME }