summaryrefslogtreecommitdiff
path: root/conf/vf_port_start_stop.cfg
diff options
context:
space:
mode:
authorLijuan Tu <lijuanx.a.tu@intel.com>2016-01-15 15:29:37 +0800
committersys_stv <sys_stv@intel.com>2016-01-19 16:43:26 +0800
commitdc13e17e327a238b3098af5c6719c10335151650 (patch)
tree56e63ecd9580c6f1c07ed243d98b57385a3595b3 /conf/vf_port_start_stop.cfg
parent7c6a6cef0e67e98db1bd4490266d017390902bb8 (diff)
tests: Add VF port start/stop test
Send packets from tester ,at the same time, vf prot start/stop several time and check if it running right. Three files added in the patch: 1, vf_port_start_stop.cfg: vm setting and qemu parameters. 2, vf_port_start_stop_test_plan.rst: test plan, describe 1 case. 3, TestSuite_vf_port_start_stop.py: implement one case according to the tes plan. Signed-off-by: Lijuan Tu <lijuanx.a.tu@intel.com>
Diffstat (limited to 'conf/vf_port_start_stop.cfg')
-rw-r--r--conf/vf_port_start_stop.cfg107
1 files changed, 107 insertions, 0 deletions
diff --git a/conf/vf_port_start_stop.cfg b/conf/vf_port_start_stop.cfg
new file mode 100644
index 0000000..ab1c0c7
--- /dev/null
+++ b/conf/vf_port_start_stop.cfg
@@ -0,0 +1,107 @@
+# QEMU options
+# name
+# name: vm0
+#
+# enable_kvm
+# enable: [yes | no]
+#
+# cpu
+# model: [host | core2duo | ...]
+# usage:
+# choose model value from the command
+# qemu-system-x86_64 -cpu help
+# number: '4' #number of vcpus
+# cpupin: '3 4 5 6' # host cpu list
+#
+# mem
+# size: 1024
+#
+# disk
+# file: /path/to/image/test.img
+#
+# net
+# type: [nic | user | tap | bridge | ...]
+# nic
+# opt_vlan: 0
+# note: Default is 0.
+# opt_macaddr: 00:00:00:00:01:01
+# note: if creating a nic, it`s better to specify a MAC,
+# else it will get a random number.
+# opt_model:["e1000" | "virtio" | "i82551" | ...]
+# note: Default is e1000.
+# opt_name: 'nic1'
+# opt_addr: ''
+# note: PCI cards only.
+# opt_vectors:
+# note: This option currently only affects virtio cards.
+# user
+# opt_vlan: 0
+# note: default is 0.
+# opt_hostfwd: [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport
+# note: If not specified, it will be setted automatically.
+# tap
+# opt_vlan: 0
+# note: default is 0.
+# opt_br: br0
+# note: if choosing tap, need to specify bridge name,
+# else it will be br0.
+# opt_script: QEMU_IFUP_PATH
+# note: if not specified, default is self.QEMU_IFUP_PATH.
+# opt_downscript: QEMU_IFDOWN_PATH
+# note: if not specified, default is self.QEMU_IFDOWN_PATH.
+#
+# device
+# driver: [pci-assign | virtio-net-pci | ...]
+# pci-assign
+# prop_host: 08:00.0
+# prop_addr: 00:00:00:00:01:02
+# virtio-net-pci
+# prop_netdev: mynet1
+# prop_id: net1
+# prop_mac: 00:00:00:00:01:03
+# prop_bus: pci.0
+# prop_addr: 0x3
+#
+# monitor
+# port: 6061
+# note: if adding monitor to vm, need to specicy
+# this port, else it will get a free port
+# on the host machine.
+#
+# qga
+# enable: [yes | no]
+#
+# serial_port
+# enable: [yes | no]
+#
+# vnc
+# displayNum: 1
+# note: you can choose a number not used on the host.
+#
+# daemon
+# enable: 'yes'
+# note:
+# By default VM will start with the daemonize status.
+# Not support starting it on the stdin now.
+
+# vm configuration for pmd sriov case
+[vm0]
+cpu =
+ model=host,number=4,cpupin=5 6 7 8 9;
+disk =
+ file=/home/image/fedora23.img;
+mem =
+ size=8196
+login =
+ user=root,password=tester;
+net =
+ type=nic,opt_vlan=0;
+ type=user,opt_vlan=0;
+monitor =
+ port=;
+qga =
+ enable=yes;
+vnc =
+ displayNum=11;
+daemon =
+ enable=yes;