Commit 03c71d37 authored by Karol Latecki's avatar Karol Latecki Committed by Tomasz Zawadzki
Browse files

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 445e667f changed raid_level to enum while this
config file still used int which caused nightly tests
to fail.

Change-Id: I729c7263261c73e255ab2e6071f76219a351cb19
Signed-off-by: default avatarKarol 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: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-by: default avatarZiye Yang <ziye.yang@intel.com>
Reviewed-by: default avatarSeth Howell <seth.howell@intel.com>
parent ec2ba7aa
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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"