test/vhost: update raid bdev entries in config file

Edited config file is loaded in test via rpc.py
load_config. Because of that, each parameter is
sent "as-is" from config file, as opposed to using
rpc.py bdev_create_raid which would cause argparse to
convert all params to desired type.

Commit 445e667 changed raid_level to enum while this
config file still used int which caused nightly tests
to fail.

Change-Id: I729c7263261c73e255ab2e6071f76219a351cb19
Signed-off-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/473565
Community-CI: Broadcom SPDK FC-NVMe CI <spdk-ci.pdl@broadcom.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Ziye Yang <ziye.yang@intel.com>
Reviewed-by: Seth Howell <seth.howell@intel.com>
This commit is contained in:
Karol Latecki 2019-11-07 18:18:20 +01:00 committed by Tomasz Zawadzki
parent ec2ba7aade
commit 03c71d3741

View File

@ -82,7 +82,7 @@
"params": {
"name": "RaidBdev0",
"strip_size": 128,
"raid_level": 0,
"raid_level": "0",
"base_bdevs": [
"Malloc2",
"Malloc3"
@ -94,7 +94,7 @@
"params": {
"name": "RaidBdev1",
"strip_size": 128,
"raid_level": 0,
"raid_level": "0",
"base_bdevs": [
"Nvme0n1p2",
"Malloc4"
@ -106,7 +106,7 @@
"params": {
"name": "RaidBdev2",
"strip_size": 128,
"raid_level": 0,
"raid_level": "0",
"base_bdevs": [
"Malloc5",
"Malloc6"