Difference between revisions of "CSIT/AArch64"

From fd.io
Jump to: navigation, search
m (Functional test)
(TEST for 2-nodes topology: full setup description)
Line 14: Line 14:
 
|}
 
|}
  
== TEST for 2-nodes topology ==
+
== TEST for 3-nodes topology ==
  
(gg) based on my tests, in order to reproduce issues more easily across the team.
+
=== setup ===
 +
Manually duplicate the topology described in ''topologies/available/vagrant.yaml'' with manual libvirt setup.
  
* set up 2 aarch64 VMs (TG + DUT)
+
==== topology file ====
** give them 3 interfaces
+
<syntaxhighlight lang="yaml">
** one for management, the other two down for the test
+
# Copyright (c) 2016 Cisco and/or its affiliates.
** compile igb_uio (see known issue #1) and load it
+
# Licensed under the Apache License, Version 2.0 (the "License");
* write topology file with `arch: aarch64`
+
# you may not use this file except in compliance with the License.
** fill pci_address, and mac_address according to your setup
+
# You may obtain a copy of the License at:
* create virtualenv following csit README
+
#
 +
#    http://www.apache.org/licenses/LICENSE-2.0
 +
#
 +
# Unless required by applicable law or agreed to in writing, software
 +
# distributed under the License is distributed on an "AS IS" BASIS,
 +
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 +
# See the License for the specific language governing permissions and
 +
# limitations under the License.
 +
 
 +
# Example file of topology
 +
 
 +
---
 +
metadata:
 +
  version: 0.1
 +
  schema: # list of schema files against which to validate
 +
    - resources/topology_schemas/3_node_topology.sch.yaml
 +
    - resources/topology_schemas/topology.sch.yaml
 +
  tags: [vagrant, 3-node]
 +
 
 +
nodes:
 +
  TG:
 +
    type: TG
 +
    host: 192.168.122.18
 +
    arch: aarch64
 +
    port: 22
 +
    username: root
 +
    password: rdcolab
 +
    interfaces:
 +
      port1:
 +
        mac_address: "52:54:00:0f:44:12"
 +
        pci_address: "0000:06:00.0"
 +
        ip4_address: "192.168.122.19"
 +
        link: link0
 +
        driver: virtio-pci
 +
      port2:
 +
        mac_address: "52:54:00:0f:44:13"
 +
        pci_address: "0000:07:00.0"
 +
        ip4_address: "192.168.122.20"
 +
        link: link0
 +
        driver: virtio-pci
 +
      port3:
 +
        mac_address: "52:54:00:0f:44:14"
 +
        pci_address: "0000:08:00.0"
 +
        ip4_address: "192.168.122.21"
 +
        link: link1
 +
        driver: virtio-pci
 +
      port4:
 +
        mac_address: "52:54:00:0f:44:15"
 +
        pci_address: "0000:09:00.0"
 +
        ip4_address: "192.168.122.22"
 +
        link: link4
 +
        driver: virtio-pci
 +
      port5:
 +
        mac_address: "52:54:00:0f:44:16"
 +
        pci_address: "0000:0a:00.0"
 +
        ip4_address: "192.168.122.23"
 +
        link: link2
 +
        driver: virtio-pci
 +
      port6:
 +
        mac_address: "52:54:00:0f:44:17"
 +
        pci_address: "0000:0b:00.0"
 +
        ip4_address: "192.168.122.24"
 +
        link: link5
 +
        driver: virtio-pci
 +
  DUT1:
 +
    type: DUT
 +
    host: 192.168.122.34
 +
    arch: aarch64
 +
    port: 22
 +
    username: root
 +
    password: rdcolab
 +
    interfaces:
 +
      port1:
 +
        mac_address: "52:54:00:0f:44:22"
 +
        pci_address: "0000:06:00.0"
 +
        ip4_address: "192.168.122.35"
 +
        link: link1
 +
        driver: uio_pci_generic
 +
      port2:
 +
        mac_address: "52:54:00:0f:44:23"
 +
        pci_address: "0000:07:00.0"
 +
        ip4_address: "192.168.122.36"
 +
        link: link4
 +
        driver: uio_pci_generic
 +
      port3:
 +
        mac_address: "52:54:00:0f:44:24"
 +
        pci_address: "0000:08:00.0"
 +
        ip4_address: "192.168.122.37"
 +
        link: link3
 +
        driver: uio_pci_generic
 +
      port4:
 +
        mac_address: "52:54:00:0f:44:25"
 +
        pci_address: "0000:09:00.0"
 +
        ip4_address: "192.168.122.38"
 +
        link: link6
 +
        driver: uio_pci_generic
 +
  DUT2:
 +
    type: DUT
 +
    host: 192.168.122.50
 +
    arch: aarch64
 +
    port: 22
 +
    username: root
 +
    password: rdcolab
 +
    interfaces:
 +
      port1:
 +
        mac_address: "52:54:00:0f:44:32"
 +
        pci_address: "0000:06:00.0"
 +
        ip4_address: "192.168.122.51"
 +
        link: link2
 +
        driver: uio_pci_generic
 +
      port2:
 +
        mac_address: "52:54:00:0f:44:33"
 +
        pci_address: "0000:07:00.0"
 +
        ip4_address: "192.168.122.52"
 +
        link: link5
 +
        driver: uio_pci_generic
 +
      port3:
 +
        mac_address: "52:54:00:0f:44:34"
 +
        pci_address: "0000:08:00.0"
 +
        ip4_address: "192.168.122.53"
 +
        link: link3
 +
        driver: uio_pci_generic
 +
      port4:
 +
        mac_address: "52:54:00:0f:44:35"
 +
        pci_address: "0000:09:00.0"
 +
        ip4_address: "192.168.122.54"
 +
        link: link6
 +
        driver: uio_pci_generic
 +
</syntaxhighlight>
 +
 
 +
==== networks ====
 +
Create '''6''' links following the schema:
 +
<syntaxhighlight lang="xml">
 +
<network connections='2'>
 +
  <name>link0</name>
 +
  <uuid>1949aa32-43d5-46f2-b633-4aa6c2c17e59</uuid>
 +
  <forward mode='nat'>
 +
    <nat>
 +
      <port start='1024' end='65535'/>
 +
    </nat>
 +
  </forward>
 +
  <bridge name='virbr8' stp='off' delay='0'/>
 +
  <mac address='52:54:00:76:75:30'/>
 +
  <ip address='192.168.121.1' netmask='255.255.255.0'>
 +
    <dhcp>
 +
      <range start='192.168.121.2' end='192.168.121.254'/>
 +
    </dhcp>
 +
  </ip>
 +
</network>
 +
</syntaxhighlight>
 +
 
 +
==== TG file ====
 +
<syntaxhighlight lang="xml">
 +
<domain type='kvm' id='188'>                                                                                                                                                                          [136/1825]
 +
  <name>fedora26-tg</name>
 +
  <uuid>e8f7cd08-dc6f-4b5c-ba6a-d793fb77ed11</uuid>
 +
  <memory unit='KiB'>4194304</memory>
 +
  <currentMemory unit='KiB'>4194304</currentMemory>
 +
  <vcpu placement='static'>2</vcpu>
 +
  <resource>
 +
    <partition>/machine</partition>
 +
  </resource>
 +
  <os>
 +
    <type arch='aarch64' machine='virt-2.9'>hvm</type>
 +
    <loader readonly='yes' type='pflash'>/usr/share/edk2/aarch64/QEMU_EFI-pflash.raw</loader>
 +
    <nvram>/var/lib/libvirt/qemu/nvram/fedora26-tg_VARS.fd</nvram>
 +
    <boot dev='hd'/>
 +
  </os>
 +
  <features>
 +
    <gic version='2'/>
 +
  </features>
 +
  <cpu mode='host-passthrough' check='none'/>
 +
  <clock offset='utc'/>
 +
  <on_poweroff>destroy</on_poweroff>
 +
  <on_reboot>restart</on_reboot>
 +
  <on_crash>destroy</on_crash>
 +
  <devices>
 +
    <emulator>/usr/bin/qemu-system-aarch64</emulator>
 +
    <disk type='file' device='disk'>
 +
      <driver name='qemu' type='qcow2'/>
 +
      <source file='/var/kvm/images/fedora26-tg.img'/>
 +
      <backingStore/>
 +
      <target dev='sda' bus='scsi'/>
 +
      <alias name='scsi0-0-0-0'/>
 +
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
 +
    </disk>
 +
    <controller type='scsi' index='0' model='virtio-scsi'>
 +
      <alias name='scsi0'/>
 +
      <address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/>
 +
    </controller>
 +
    <controller type='pci' index='0' model='pcie-root'>
 +
      <alias name='pcie.0'/>
 +
    </controller>
 +
    <controller type='pci' index='1' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='1' port='0x8'/>
 +
      <alias name='pci.1'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0' multifunction='on'/>
 +
    </controller>
 +
    <controller type='pci' index='2' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='2' port='0x9'/>
 +
      <alias name='pci.2'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
 +
    </controller>
 +
    <controller type='pci' index='3' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='3' port='0xa'/>
 +
      <alias name='pci.3'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
 +
    </controller>
 +
    <controller type='pci' index='4' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='4' port='0xb'/>
 +
      <alias name='pci.4'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x3'/>
 +
    </controller>
 +
    <controller type='pci' index='5' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='5' port='0xc'/>
 +
      <alias name='pci.5'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x4'/>
 +
    </controller>
 +
    <controller type='pci' index='6' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='6' port='0xd'/>
 +
      <alias name='pci.6'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x5'/>
 +
    </controller>
 +
    <controller type='pci' index='7' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='7' port='0xe'/>
 +
      <alias name='pci.7'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x6'/>
 +
    </controller>
 +
    <controller type='pci' index='8' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='8' port='0xf'/>
 +
      <alias name='pci.8'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x7'/>
 +
    </controller>
 +
    <controller type='pci' index='9' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='9' port='0x10'/>
 +
      <alias name='pci.9'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0' multifunction='on'/>
 +
    </controller>
 +
    <controller type='pci' index='10' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='10' port='0x11'/>
 +
      <alias name='pci.10'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x1'/>
 +
    </controller>
 +
    <controller type='pci' index='11' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='11' port='0x12'/>
 +
      <alias name='pci.11'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x2'/>
 +
    </controller>
 +
    <controller type='virtio-serial' index='0'>
 +
      <alias name='virtio-serial0'/>
 +
      <address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
 +
    </controller>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:11'/>
 +
      <source network='default' bridge='virbr0'/>
 +
      <target dev='vnet0'/>
 +
      <model type='virtio'/>
 +
      <alias name='net0'/>
 +
      <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:12'/>
 +
      <source network='link0' bridge='virbr8'/>
 +
      <target dev='vnet1'/>
 +
      <model type='virtio'/>
 +
      <alias name='net1'/>
 +
      <address type='pci' domain='0x0000' bus='0x06' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:13'/>
 +
      <source network='link0' bridge='virbr8'/>
 +
      <target dev='vnet2'/>
 +
      <model type='virtio'/>
 +
      <alias name='net2'/>
 +
      <address type='pci' domain='0x0000' bus='0x07' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:14'/>
 +
      <source network='link1' bridge='virbr1'/>
 +
      <target dev='vnet3'/>
 +
      <model type='virtio'/>
 +
      <alias name='net3'/>
 +
      <address type='pci' domain='0x0000' bus='0x08' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:15'/>
 +
      <source network='link4' bridge='virbr4'/>
 +
      <target dev='vnet4'/>
 +
      <model type='virtio'/>
 +
      <alias name='net4'/>
 +
      <address type='pci' domain='0x0000' bus='0x09' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:16'/>
 +
      <source network='link2' bridge='virbr2'/>
 +
      <target dev='vnet5'/>
 +
      <model type='virtio'/>
 +
      <alias name='net5'/>
 +
      <address type='pci' domain='0x0000' bus='0x0a' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:17'/>
 +
      <source network='link5' bridge='virbr5'/>
 +
      <target dev='vnet6'/>
 +
      <model type='virtio'/>
 +
      <alias name='net6'/>
 +
      <address type='pci' domain='0x0000' bus='0x0b' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <serial type='pty'>
 +
      <source path='/dev/pts/1'/>
 +
      <target port='0'/>
 +
      <alias name='serial0'/>
 +
    </serial>
 +
    <console type='pty' tty='/dev/pts/1'>
 +
      <source path='/dev/pts/1'/>
 +
      <target type='serial' port='0'/>
 +
      <alias name='serial0'/>
 +
    </console>
 +
    <channel type='unix'>
 +
      <source mode='bind' path='/var/lib/libvirt/qemu/channel/target/domain-188-fedora26-tg/org.qemu.guest_agent.0'/>
 +
      <target type='virtio' name='org.qemu.guest_agent.0' state='disconnected'/>
 +
      <alias name='channel0'/>
 +
      <address type='virtio-serial' controller='0' bus='0' port='1'/>
 +
    </channel>
 +
    <rng model='virtio'>
 +
      <backend model='random'>/dev/urandom</backend>
 +
      <alias name='rng0'/>
 +
      <address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
 +
    </rng>
 +
  </devices>
 +
  <seclabel type='dynamic' model='selinux' relabel='yes'>
 +
    <label>system_u:system_r:svirt_t:s0:c24,c908</label>
 +
    <imagelabel>system_u:object_r:svirt_image_t:s0:c24,c908</imagelabel>
 +
  </seclabel>
 +
  <seclabel type='dynamic' model='dac' relabel='yes'>
 +
    <label>+0:+0</label>
 +
    <imagelabel>+0:+0</imagelabel>
 +
  </seclabel>
 +
</domain>
 +
</syntaxhighlight>
 +
 
 +
==== DUT1 file ====
 +
<syntaxhighlight lang="xml">
 +
<domain type='kvm' id='189'>
 +
  <name>fedora26-dut-1</name>
 +
  <uuid>e8f7cd08-dc6f-4b5c-ba6a-d793fb77ed12</uuid>
 +
  <memory unit='KiB'>4194304</memory>
 +
  <currentMemory unit='KiB'>4194304</currentMemory>
 +
  <vcpu placement='static'>2</vcpu>
 +
  <resource>
 +
    <partition>/machine</partition>
 +
  </resource>
 +
  <os>
 +
    <type arch='aarch64' machine='virt-2.9'>hvm</type>
 +
    <loader readonly='yes' type='pflash'>/usr/share/edk2/aarch64/QEMU_EFI-pflash.raw</loader>
 +
    <nvram>/var/lib/libvirt/qemu/nvram/fedora26-tg_VARS.fd</nvram>
 +
    <boot dev='hd'/>
 +
  </os>
 +
  <features>
 +
    <gic version='2'/>
 +
  </features>
 +
  <cpu mode='host-passthrough' check='none'/>
 +
  <clock offset='utc'/>
 +
  <on_poweroff>destroy</on_poweroff>
 +
  <on_reboot>restart</on_reboot>
 +
  <on_crash>destroy</on_crash>
 +
  <devices>
 +
    <emulator>/usr/bin/qemu-system-aarch64</emulator>
 +
    <disk type='file' device='disk'>
 +
      <driver name='qemu' type='qcow2'/>
 +
      <source file='/var/kvm/images/fedora26-dut-1.img'/>
 +
      <backingStore/>
 +
      <target dev='sda' bus='scsi'/>
 +
      <alias name='scsi0-0-0-0'/>
 +
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
 +
    </disk>
 +
    <disk type='file' device='cdrom'>
 +
      <backingStore/>
 +
      <target dev='sdb' bus='scsi'/>
 +
      <readonly/>
 +
      <alias name='scsi0-0-0-1'/>
 +
      <address type='drive' controller='0' bus='0' target='0' unit='1'/>
 +
    </disk>
 +
    <controller type='usb' index='0' model='nec-xhci' ports='8'>
 +
      <alias name='usb'/>
 +
      <address type='pci' domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
 +
    </controller>
 +
    <controller type='scsi' index='0' model='virtio-scsi'>
 +
      <alias name='scsi0'/>
 +
      <address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/>
 +
    </controller>
 +
    <controller type='pci' index='0' model='pcie-root'>
 +
      <alias name='pcie.0'/>
 +
    </controller>
 +
    <controller type='pci' index='1' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='1' port='0x8'/>
 +
      <alias name='pci.1'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0' multifunction='on'/>
 +
    </controller>
 +
    <controller type='pci' index='2' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='2' port='0x9'/>
 +
      <alias name='pci.2'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
 +
    </controller>
 +
    <controller type='pci' index='3' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='3' port='0xa'/>
 +
      <alias name='pci.3'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
 +
    </controller>
 +
    <controller type='pci' index='4' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='4' port='0xb'/>
 +
      <alias name='pci.4'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x3'/>
 +
    </controller>
 +
    <controller type='pci' index='5' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='5' port='0xc'/>
 +
      <alias name='pci.5'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x4'/>
 +
    </controller>
 +
    <controller type='pci' index='6' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='6' port='0xd'/>
 +
      <alias name='pci.6'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x5'/>
 +
    </controller>
 +
    <controller type='pci' index='7' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='7' port='0xe'/>
 +
      <alias name='pci.7'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x6'/>
 +
    </controller>
 +
    <controller type='pci' index='8' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='8' port='0xf'/>
 +
      <alias name='pci.8'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x7'/>
 +
    </controller>
 +
    <controller type='pci' index='9' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='9' port='0x10'/>
 +
      <alias name='pci.9'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
 +
    </controller>
 +
    <controller type='virtio-serial' index='0'>
 +
      <alias name='virtio-serial0'/>
 +
      <address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
 +
    </controller>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:21'/>
 +
      <source network='default' bridge='virbr0'/>
 +
      <target dev='vnet7'/>
 +
      <model type='virtio'/>
 +
      <alias name='net0'/>
 +
      <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:22'/>
 +
      <source network='link1' bridge='virbr1'/>
 +
      <target dev='vnet8'/>
 +
      <model type='virtio'/>
 +
      <alias name='net1'/>
 +
      <address type='pci' domain='0x0000' bus='0x06' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:23'/>
 +
      <source network='link4' bridge='virbr4'/>
 +
      <target dev='vnet9'/>
 +
      <model type='virtio'/>
 +
      <alias name='net2'/>
 +
      <address type='pci' domain='0x0000' bus='0x07' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:24'/>
 +
      <source network='link3' bridge='virbr3'/>
 +
      <target dev='vnet10'/>
 +
      <model type='virtio'/>
 +
      <alias name='net3'/>
 +
      <address type='pci' domain='0x0000' bus='0x08' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:25'/>
 +
      <source network='link6' bridge='virbr6'/>
 +
      <target dev='vnet11'/>
 +
      <model type='virtio'/>
 +
      <alias name='net4'/>
 +
      <address type='pci' domain='0x0000' bus='0x09' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <serial type='pty'>
 +
      <source path='/dev/pts/4'/>
 +
      <target port='0'/>
 +
      <alias name='serial0'/>
 +
    </serial>
 +
    <console type='pty' tty='/dev/pts/4'>
 +
      <source path='/dev/pts/4'/>
 +
      <target type='serial' port='0'/>
 +
      <alias name='serial0'/>
 +
    </console>
 +
    <channel type='unix'>
 +
      <source mode='bind' path='/var/lib/libvirt/qemu/channel/target/domain-189-fedora26-dut-1/org.qemu.guest_agent.0'/>
 +
      <target type='virtio' name='org.qemu.guest_agent.0' state='disconnected'/>
 +
      <alias name='channel0'/>
 +
      <address type='virtio-serial' controller='0' bus='0' port='1'/>
 +
    </channel>
 +
    <rng model='virtio'>
 +
      <backend model='random'>/dev/urandom</backend>
 +
      <alias name='rng0'/>
 +
      <address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
 +
    </rng>
 +
  </devices>
 +
  <seclabel type='dynamic' model='selinux' relabel='yes'>
 +
    <label>system_u:system_r:svirt_t:s0:c180,c713</label>
 +
    <imagelabel>system_u:object_r:svirt_image_t:s0:c180,c713</imagelabel>
 +
  </seclabel>
 +
  <seclabel type='dynamic' model='dac' relabel='yes'>
 +
    <label>+0:+0</label>
 +
    <imagelabel>+0:+0</imagelabel>
 +
  </seclabel>
 +
</domain>
 +
</syntaxhighlight>
 +
 
 +
==== DUT2 file ====
 +
<syntaxhighlight lang="xml">
 +
<domain type='kvm' id='190'>
 +
  <name>fedora26-dut-2</name>
 +
  <uuid>e8f7cd08-dc6f-4b5c-ba6a-d793fb77ed13</uuid>
 +
  <memory unit='KiB'>4194304</memory>
 +
  <currentMemory unit='KiB'>4194304</currentMemory>
 +
  <vcpu placement='static'>2</vcpu>
 +
  <resource>
 +
    <partition>/machine</partition>
 +
  </resource>
 +
  <os>
 +
    <type arch='aarch64' machine='virt-2.9'>hvm</type>
 +
    <loader readonly='yes' type='pflash'>/usr/share/edk2/aarch64/QEMU_EFI-pflash.raw</loader>
 +
    <nvram>/var/lib/libvirt/qemu/nvram/fedora26-tg_VARS.fd</nvram>
 +
    <boot dev='hd'/>
 +
  </os>
 +
  <features>
 +
    <gic version='2'/>
 +
  </features>
 +
  <cpu mode='host-passthrough' check='none'/>
 +
  <clock offset='utc'/>
 +
  <on_poweroff>destroy</on_poweroff>
 +
  <on_reboot>restart</on_reboot>
 +
  <on_crash>destroy</on_crash>
 +
  <devices>
 +
    <emulator>/usr/bin/qemu-system-aarch64</emulator>
 +
    <disk type='file' device='disk'>
 +
      <driver name='qemu' type='qcow2'/>
 +
      <source file='/var/kvm/images/fedora26-dut-2.img'/>
 +
      <backingStore/>
 +
      <target dev='sda' bus='scsi'/>
 +
      <alias name='scsi0-0-0-0'/>
 +
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
 +
    </disk>
 +
    <disk type='file' device='cdrom'>
 +
      <backingStore/>
 +
      <target dev='sdb' bus='scsi'/>
 +
      <readonly/>
 +
      <alias name='scsi0-0-0-1'/>
 +
      <address type='drive' controller='0' bus='0' target='0' unit='1'/>
 +
    </disk>
 +
    <controller type='usb' index='0' model='nec-xhci' ports='8'>
 +
      <alias name='usb'/>
 +
      <address type='pci' domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
 +
    </controller>
 +
    <controller type='scsi' index='0' model='virtio-scsi'>
 +
      <alias name='scsi0'/>
 +
      <address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/>
 +
    </controller>
 +
    <controller type='pci' index='0' model='pcie-root'>
 +
      <alias name='pcie.0'/>
 +
    </controller>
 +
    <controller type='pci' index='1' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='1' port='0x8'/>
 +
      <alias name='pci.1'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0' multifunction='on'/>
 +
    </controller>
 +
    <controller type='pci' index='2' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='2' port='0x9'/>
 +
      <alias name='pci.2'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
 +
    </controller>
 +
    <controller type='pci' index='3' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='3' port='0xa'/>
 +
      <alias name='pci.3'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
 +
    </controller>
 +
    <controller type='pci' index='4' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='4' port='0xb'/>
 +
      <alias name='pci.4'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x3'/>
 +
    </controller>
 +
    <controller type='pci' index='5' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='5' port='0xc'/>
 +
      <alias name='pci.5'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x4'/>
 +
    </controller>
 +
    <controller type='pci' index='6' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='6' port='0xd'/>
 +
      <alias name='pci.6'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x5'/>
 +
    </controller>
 +
    <controller type='pci' index='7' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='7' port='0xe'/>
 +
      <alias name='pci.7'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x6'/>
 +
    </controller>
 +
    <controller type='pci' index='8' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='8' port='0xf'/>
 +
      <alias name='pci.8'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x7'/>
 +
    </controller>
 +
    <controller type='pci' index='9' model='pcie-root-port'>
 +
      <model name='pcie-root-port'/>
 +
      <target chassis='9' port='0x10'/>
 +
      <alias name='pci.9'/>
 +
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
 +
    </controller>
 +
    <controller type='virtio-serial' index='0'>
 +
      <alias name='virtio-serial0'/>
 +
      <address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
 +
    </controller>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:31'/>
 +
      <source network='default' bridge='virbr0'/>
 +
      <target dev='vnet12'/>
 +
      <model type='virtio'/>
 +
      <alias name='net0'/>
 +
      <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:32'/>
 +
      <source network='link2' bridge='virbr2'/>
 +
      <target dev='vnet13'/>
 +
      <model type='virtio'/>
 +
      <alias name='net1'/>
 +
      <address type='pci' domain='0x0000' bus='0x06' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:33'/>
 +
      <source network='link5' bridge='virbr5'/>
 +
      <target dev='vnet14'/>
 +
      <model type='virtio'/>
 +
      <alias name='net2'/>
 +
      <address type='pci' domain='0x0000' bus='0x07' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:34'/>
 +
      <source network='link3' bridge='virbr3'/>
 +
      <target dev='vnet15'/>
 +
      <model type='virtio'/>
 +
      <alias name='net3'/>
 +
      <address type='pci' domain='0x0000' bus='0x08' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <interface type='network'>
 +
      <mac address='52:54:00:0f:44:35'/>
 +
      <source network='link6' bridge='virbr6'/>
 +
      <target dev='vnet16'/>
 +
      <model type='virtio'/>
 +
      <alias name='net4'/>
 +
      <address type='pci' domain='0x0000' bus='0x09' slot='0x00' function='0x0'/>
 +
    </interface>
 +
    <serial type='pty'>
 +
      <source path='/dev/pts/8'/>
 +
      <target port='0'/>
 +
      <alias name='serial0'/>
 +
    </serial>
 +
    <console type='pty' tty='/dev/pts/8'>
 +
      <source path='/dev/pts/8'/>
 +
      <target type='serial' port='0'/>
 +
      <alias name='serial0'/>
 +
    </console>
 +
    <channel type='unix'>
 +
      <source mode='bind' path='/var/lib/libvirt/qemu/channel/target/domain-190-fedora26-dut-2/org.qemu.guest_agent.0'/>
 +
      <target type='virtio' name='org.qemu.guest_agent.0' state='disconnected'/>
 +
      <alias name='channel0'/>
 +
      <address type='virtio-serial' controller='0' bus='0' port='1'/>
 +
    </channel>
 +
    <rng model='virtio'>
 +
      <backend model='random'>/dev/urandom</backend>
 +
      <alias name='rng0'/>
 +
      <address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
 +
    </rng>
 +
  </devices>
 +
  <seclabel type='dynamic' model='selinux' relabel='yes'>
 +
    <label>system_u:system_r:svirt_t:s0:c83,c262</label>
 +
    <imagelabel>system_u:object_r:svirt_image_t:s0:c83,c262</imagelabel>
 +
  </seclabel>
 +
  <seclabel type='dynamic' model='dac' relabel='yes'>
 +
    <label>+0:+0</label>
 +
    <imagelabel>+0:+0</imagelabel>
 +
  </seclabel>
 +
</domain>
 +
</syntaxhighlight>
 +
 
 +
=== running the tests ===
 +
* from csit repository, create virtualenv following csit README
 
** virtualenv env
 
** virtualenv env
 
** source env/bin/activate
 
** source env/bin/activate

Revision as of 08:58, 20 February 2018

CSIT TOI

https://wiki.fd.io/view/CSIT/TOIs

Recent Patches

add new topology parameter: arch Merged 2018-01-10 https://gerrit.fd.io/r/#/c/9474/
update nodes dependency Merged 2018-01-02 https://gerrit.fd.io/r/#/c/9584/
update vagrant to use ubuntu 16.04 images https://gerrit.fd.io/r/#/c/8295/
warn against virtualenv --system-site-packages Merged 2017-12-20 https://gerrit.fd.io/r/#/c/9428/

TEST for 3-nodes topology

setup

Manually duplicate the topology described in topologies/available/vagrant.yaml with manual libvirt setup.

topology file

# Copyright (c) 2016 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
 
# Example file of topology
 
---
metadata:
  version: 0.1
  schema: # list of schema files against which to validate
    - resources/topology_schemas/3_node_topology.sch.yaml
    - resources/topology_schemas/topology.sch.yaml
  tags: [vagrant, 3-node]

nodes:
  TG:
    type: TG
    host: 192.168.122.18
    arch: aarch64
    port: 22
    username: root
    password: rdcolab
    interfaces:
      port1:
        mac_address: "52:54:00:0f:44:12"
        pci_address: "0000:06:00.0"
        ip4_address: "192.168.122.19"
        link: link0
        driver: virtio-pci
      port2:
        mac_address: "52:54:00:0f:44:13"
        pci_address: "0000:07:00.0"
        ip4_address: "192.168.122.20"
        link: link0
        driver: virtio-pci
      port3:
        mac_address: "52:54:00:0f:44:14"
        pci_address: "0000:08:00.0"
        ip4_address: "192.168.122.21"
        link: link1
        driver: virtio-pci
      port4:
        mac_address: "52:54:00:0f:44:15"
        pci_address: "0000:09:00.0"
        ip4_address: "192.168.122.22"
        link: link4
        driver: virtio-pci
      port5:
        mac_address: "52:54:00:0f:44:16"
        pci_address: "0000:0a:00.0"
        ip4_address: "192.168.122.23"
        link: link2
        driver: virtio-pci
      port6:
        mac_address: "52:54:00:0f:44:17"
        pci_address: "0000:0b:00.0"
        ip4_address: "192.168.122.24"
        link: link5
        driver: virtio-pci
  DUT1:
    type: DUT
    host: 192.168.122.34
    arch: aarch64
    port: 22
    username: root
    password: rdcolab
    interfaces:
      port1:
        mac_address: "52:54:00:0f:44:22"
        pci_address: "0000:06:00.0"
        ip4_address: "192.168.122.35"
        link: link1
        driver: uio_pci_generic
      port2:
        mac_address: "52:54:00:0f:44:23"
        pci_address: "0000:07:00.0"
        ip4_address: "192.168.122.36"
        link: link4
        driver: uio_pci_generic
      port3:
        mac_address: "52:54:00:0f:44:24"
        pci_address: "0000:08:00.0"
        ip4_address: "192.168.122.37"
        link: link3
        driver: uio_pci_generic
      port4:
        mac_address: "52:54:00:0f:44:25"
        pci_address: "0000:09:00.0"
        ip4_address: "192.168.122.38"
        link: link6
        driver: uio_pci_generic
  DUT2:
    type: DUT
    host: 192.168.122.50
    arch: aarch64
    port: 22
    username: root
    password: rdcolab
    interfaces:
      port1:
        mac_address: "52:54:00:0f:44:32"
        pci_address: "0000:06:00.0"
        ip4_address: "192.168.122.51"
        link: link2
        driver: uio_pci_generic
      port2:
        mac_address: "52:54:00:0f:44:33"
        pci_address: "0000:07:00.0"
        ip4_address: "192.168.122.52"
        link: link5
        driver: uio_pci_generic
      port3:
        mac_address: "52:54:00:0f:44:34"
        pci_address: "0000:08:00.0"
        ip4_address: "192.168.122.53"
        link: link3
        driver: uio_pci_generic
      port4:
        mac_address: "52:54:00:0f:44:35"
        pci_address: "0000:09:00.0"
        ip4_address: "192.168.122.54"
        link: link6
        driver: uio_pci_generic

networks

Create 6 links following the schema:

<network connections='2'>
  <name>link0</name>
  <uuid>1949aa32-43d5-46f2-b633-4aa6c2c17e59</uuid>
  <forward mode='nat'>
    <nat>
      <port start='1024' end='65535'/>
    </nat>
  </forward>
  <bridge name='virbr8' stp='off' delay='0'/>
  <mac address='52:54:00:76:75:30'/>
  <ip address='192.168.121.1' netmask='255.255.255.0'>
    <dhcp>
      <range start='192.168.121.2' end='192.168.121.254'/>
    </dhcp>
  </ip>
</network>

TG file

<domain type='kvm' id='188'>                                                                                                                                                                          [136/1825]
  <name>fedora26-tg</name>
  <uuid>e8f7cd08-dc6f-4b5c-ba6a-d793fb77ed11</uuid>
  <memory unit='KiB'>4194304</memory>
  <currentMemory unit='KiB'>4194304</currentMemory>
  <vcpu placement='static'>2</vcpu>
  <resource>
    <partition>/machine</partition>
  </resource>
  <os>
    <type arch='aarch64' machine='virt-2.9'>hvm</type>
    <loader readonly='yes' type='pflash'>/usr/share/edk2/aarch64/QEMU_EFI-pflash.raw</loader>
    <nvram>/var/lib/libvirt/qemu/nvram/fedora26-tg_VARS.fd</nvram>
    <boot dev='hd'/>
  </os>
  <features>
    <gic version='2'/>
  </features>
  <cpu mode='host-passthrough' check='none'/>
  <clock offset='utc'/>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>destroy</on_crash>
  <devices>
    <emulator>/usr/bin/qemu-system-aarch64</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='qcow2'/>
      <source file='/var/kvm/images/fedora26-tg.img'/>
      <backingStore/>
      <target dev='sda' bus='scsi'/>
      <alias name='scsi0-0-0-0'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <controller type='scsi' index='0' model='virtio-scsi'>
      <alias name='scsi0'/>
      <address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/>
    </controller>
    <controller type='pci' index='0' model='pcie-root'>
      <alias name='pcie.0'/>
    </controller>
    <controller type='pci' index='1' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='1' port='0x8'/>
      <alias name='pci.1'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0' multifunction='on'/>
    </controller>
    <controller type='pci' index='2' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='2' port='0x9'/>
      <alias name='pci.2'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
    </controller>
    <controller type='pci' index='3' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='3' port='0xa'/>
      <alias name='pci.3'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
    </controller>
    <controller type='pci' index='4' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='4' port='0xb'/>
      <alias name='pci.4'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x3'/>
    </controller>
    <controller type='pci' index='5' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='5' port='0xc'/>
      <alias name='pci.5'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x4'/>
    </controller>
    <controller type='pci' index='6' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='6' port='0xd'/>
      <alias name='pci.6'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x5'/>
    </controller>
    <controller type='pci' index='7' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='7' port='0xe'/>
      <alias name='pci.7'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x6'/>
    </controller>
    <controller type='pci' index='8' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='8' port='0xf'/>
      <alias name='pci.8'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x7'/>
    </controller>
    <controller type='pci' index='9' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='9' port='0x10'/>
      <alias name='pci.9'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0' multifunction='on'/>
    </controller>
    <controller type='pci' index='10' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='10' port='0x11'/>
      <alias name='pci.10'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x1'/>
    </controller>
    <controller type='pci' index='11' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='11' port='0x12'/>
      <alias name='pci.11'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x2'/>
    </controller>
    <controller type='virtio-serial' index='0'>
      <alias name='virtio-serial0'/>
      <address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
    </controller>
    <interface type='network'>
      <mac address='52:54:00:0f:44:11'/>
      <source network='default' bridge='virbr0'/>
      <target dev='vnet0'/>
      <model type='virtio'/>
      <alias name='net0'/>
      <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:12'/>
      <source network='link0' bridge='virbr8'/>
      <target dev='vnet1'/>
      <model type='virtio'/>
      <alias name='net1'/>
      <address type='pci' domain='0x0000' bus='0x06' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:13'/>
      <source network='link0' bridge='virbr8'/>
      <target dev='vnet2'/>
      <model type='virtio'/>
      <alias name='net2'/>
      <address type='pci' domain='0x0000' bus='0x07' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:14'/>
      <source network='link1' bridge='virbr1'/>
      <target dev='vnet3'/>
      <model type='virtio'/>
      <alias name='net3'/>
      <address type='pci' domain='0x0000' bus='0x08' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:15'/>
      <source network='link4' bridge='virbr4'/>
      <target dev='vnet4'/>
      <model type='virtio'/>
      <alias name='net4'/>
      <address type='pci' domain='0x0000' bus='0x09' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:16'/>
      <source network='link2' bridge='virbr2'/>
      <target dev='vnet5'/>
      <model type='virtio'/>
      <alias name='net5'/>
      <address type='pci' domain='0x0000' bus='0x0a' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:17'/>
      <source network='link5' bridge='virbr5'/>
      <target dev='vnet6'/>
      <model type='virtio'/>
      <alias name='net6'/>
      <address type='pci' domain='0x0000' bus='0x0b' slot='0x00' function='0x0'/>
    </interface>
    <serial type='pty'>
      <source path='/dev/pts/1'/>
      <target port='0'/>
      <alias name='serial0'/>
    </serial>
    <console type='pty' tty='/dev/pts/1'>
      <source path='/dev/pts/1'/>
      <target type='serial' port='0'/>
      <alias name='serial0'/>
    </console>
    <channel type='unix'>
      <source mode='bind' path='/var/lib/libvirt/qemu/channel/target/domain-188-fedora26-tg/org.qemu.guest_agent.0'/>
      <target type='virtio' name='org.qemu.guest_agent.0' state='disconnected'/>
      <alias name='channel0'/>
      <address type='virtio-serial' controller='0' bus='0' port='1'/>
    </channel>
    <rng model='virtio'>
      <backend model='random'>/dev/urandom</backend>
      <alias name='rng0'/>
      <address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
    </rng>
  </devices>
  <seclabel type='dynamic' model='selinux' relabel='yes'>
    <label>system_u:system_r:svirt_t:s0:c24,c908</label>
    <imagelabel>system_u:object_r:svirt_image_t:s0:c24,c908</imagelabel>
  </seclabel>
  <seclabel type='dynamic' model='dac' relabel='yes'>
    <label>+0:+0</label>
    <imagelabel>+0:+0</imagelabel>
  </seclabel>
</domain>

DUT1 file

<domain type='kvm' id='189'>
  <name>fedora26-dut-1</name>
  <uuid>e8f7cd08-dc6f-4b5c-ba6a-d793fb77ed12</uuid>
  <memory unit='KiB'>4194304</memory>
  <currentMemory unit='KiB'>4194304</currentMemory>
  <vcpu placement='static'>2</vcpu>
  <resource>
    <partition>/machine</partition>
  </resource>
  <os>
    <type arch='aarch64' machine='virt-2.9'>hvm</type>
    <loader readonly='yes' type='pflash'>/usr/share/edk2/aarch64/QEMU_EFI-pflash.raw</loader>
    <nvram>/var/lib/libvirt/qemu/nvram/fedora26-tg_VARS.fd</nvram>
    <boot dev='hd'/>
  </os>
  <features>
    <gic version='2'/>
  </features>
  <cpu mode='host-passthrough' check='none'/>
  <clock offset='utc'/>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>destroy</on_crash>
  <devices>
    <emulator>/usr/bin/qemu-system-aarch64</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='qcow2'/>
      <source file='/var/kvm/images/fedora26-dut-1.img'/>
      <backingStore/>
      <target dev='sda' bus='scsi'/>
      <alias name='scsi0-0-0-0'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <disk type='file' device='cdrom'>
      <backingStore/>
      <target dev='sdb' bus='scsi'/>
      <readonly/>
      <alias name='scsi0-0-0-1'/>
      <address type='drive' controller='0' bus='0' target='0' unit='1'/>
    </disk>
    <controller type='usb' index='0' model='nec-xhci' ports='8'>
      <alias name='usb'/>
      <address type='pci' domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
    </controller>
    <controller type='scsi' index='0' model='virtio-scsi'>
      <alias name='scsi0'/>
      <address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/>
    </controller>
    <controller type='pci' index='0' model='pcie-root'>
      <alias name='pcie.0'/>
    </controller>
    <controller type='pci' index='1' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='1' port='0x8'/>
      <alias name='pci.1'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0' multifunction='on'/>
    </controller>
    <controller type='pci' index='2' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='2' port='0x9'/>
      <alias name='pci.2'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
    </controller>
    <controller type='pci' index='3' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='3' port='0xa'/>
      <alias name='pci.3'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
    </controller>
    <controller type='pci' index='4' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='4' port='0xb'/>
      <alias name='pci.4'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x3'/>
    </controller>
    <controller type='pci' index='5' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='5' port='0xc'/>
      <alias name='pci.5'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x4'/>
    </controller>
    <controller type='pci' index='6' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='6' port='0xd'/>
      <alias name='pci.6'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x5'/>
    </controller>
    <controller type='pci' index='7' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='7' port='0xe'/>
      <alias name='pci.7'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x6'/>
    </controller>
    <controller type='pci' index='8' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='8' port='0xf'/>
      <alias name='pci.8'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x7'/>
    </controller>
    <controller type='pci' index='9' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='9' port='0x10'/>
      <alias name='pci.9'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
    </controller>
    <controller type='virtio-serial' index='0'>
      <alias name='virtio-serial0'/>
      <address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
    </controller>
    <interface type='network'>
      <mac address='52:54:00:0f:44:21'/>
      <source network='default' bridge='virbr0'/>
      <target dev='vnet7'/>
      <model type='virtio'/>
      <alias name='net0'/>
      <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:22'/>
      <source network='link1' bridge='virbr1'/>
      <target dev='vnet8'/>
      <model type='virtio'/>
      <alias name='net1'/>
      <address type='pci' domain='0x0000' bus='0x06' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:23'/>
      <source network='link4' bridge='virbr4'/>
      <target dev='vnet9'/>
      <model type='virtio'/>
      <alias name='net2'/>
      <address type='pci' domain='0x0000' bus='0x07' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:24'/>
      <source network='link3' bridge='virbr3'/>
      <target dev='vnet10'/>
      <model type='virtio'/>
      <alias name='net3'/>
      <address type='pci' domain='0x0000' bus='0x08' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:25'/>
      <source network='link6' bridge='virbr6'/>
      <target dev='vnet11'/>
      <model type='virtio'/>
      <alias name='net4'/>
      <address type='pci' domain='0x0000' bus='0x09' slot='0x00' function='0x0'/>
    </interface>
    <serial type='pty'>
      <source path='/dev/pts/4'/>
      <target port='0'/>
      <alias name='serial0'/>
    </serial>
    <console type='pty' tty='/dev/pts/4'>
      <source path='/dev/pts/4'/>
      <target type='serial' port='0'/>
      <alias name='serial0'/>
    </console>
    <channel type='unix'>
      <source mode='bind' path='/var/lib/libvirt/qemu/channel/target/domain-189-fedora26-dut-1/org.qemu.guest_agent.0'/>
      <target type='virtio' name='org.qemu.guest_agent.0' state='disconnected'/>
      <alias name='channel0'/>
      <address type='virtio-serial' controller='0' bus='0' port='1'/>
    </channel>
    <rng model='virtio'>
      <backend model='random'>/dev/urandom</backend>
      <alias name='rng0'/>
      <address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
    </rng>
  </devices>
  <seclabel type='dynamic' model='selinux' relabel='yes'>
    <label>system_u:system_r:svirt_t:s0:c180,c713</label>
    <imagelabel>system_u:object_r:svirt_image_t:s0:c180,c713</imagelabel>
  </seclabel>
  <seclabel type='dynamic' model='dac' relabel='yes'>
    <label>+0:+0</label>
    <imagelabel>+0:+0</imagelabel>
  </seclabel>
</domain>

DUT2 file

<domain type='kvm' id='190'>
  <name>fedora26-dut-2</name>
  <uuid>e8f7cd08-dc6f-4b5c-ba6a-d793fb77ed13</uuid>
  <memory unit='KiB'>4194304</memory>
  <currentMemory unit='KiB'>4194304</currentMemory>
  <vcpu placement='static'>2</vcpu>
  <resource>
    <partition>/machine</partition>
  </resource>
  <os>
    <type arch='aarch64' machine='virt-2.9'>hvm</type>
    <loader readonly='yes' type='pflash'>/usr/share/edk2/aarch64/QEMU_EFI-pflash.raw</loader>
    <nvram>/var/lib/libvirt/qemu/nvram/fedora26-tg_VARS.fd</nvram>
    <boot dev='hd'/>
  </os>
  <features>
    <gic version='2'/>
  </features>
  <cpu mode='host-passthrough' check='none'/>
  <clock offset='utc'/>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>destroy</on_crash>
  <devices>
    <emulator>/usr/bin/qemu-system-aarch64</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='qcow2'/>
      <source file='/var/kvm/images/fedora26-dut-2.img'/>
      <backingStore/>
      <target dev='sda' bus='scsi'/>
      <alias name='scsi0-0-0-0'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <disk type='file' device='cdrom'>
      <backingStore/>
      <target dev='sdb' bus='scsi'/>
      <readonly/>
      <alias name='scsi0-0-0-1'/>
      <address type='drive' controller='0' bus='0' target='0' unit='1'/>
    </disk>
    <controller type='usb' index='0' model='nec-xhci' ports='8'>
      <alias name='usb'/>
      <address type='pci' domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
    </controller>
    <controller type='scsi' index='0' model='virtio-scsi'>
      <alias name='scsi0'/>
      <address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/>
    </controller>
    <controller type='pci' index='0' model='pcie-root'>
      <alias name='pcie.0'/>
    </controller>
    <controller type='pci' index='1' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='1' port='0x8'/>
      <alias name='pci.1'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0' multifunction='on'/>
    </controller>
    <controller type='pci' index='2' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='2' port='0x9'/>
      <alias name='pci.2'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
    </controller>
    <controller type='pci' index='3' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='3' port='0xa'/>
      <alias name='pci.3'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
    </controller>
    <controller type='pci' index='4' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='4' port='0xb'/>
      <alias name='pci.4'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x3'/>
    </controller>
    <controller type='pci' index='5' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='5' port='0xc'/>
      <alias name='pci.5'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x4'/>
    </controller>
    <controller type='pci' index='6' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='6' port='0xd'/>
      <alias name='pci.6'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x5'/>
    </controller>
    <controller type='pci' index='7' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='7' port='0xe'/>
      <alias name='pci.7'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x6'/>
    </controller>
    <controller type='pci' index='8' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='8' port='0xf'/>
      <alias name='pci.8'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x7'/>
    </controller>
    <controller type='pci' index='9' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='9' port='0x10'/>
      <alias name='pci.9'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
    </controller>
    <controller type='virtio-serial' index='0'>
      <alias name='virtio-serial0'/>
      <address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
    </controller>
    <interface type='network'>
      <mac address='52:54:00:0f:44:31'/>
      <source network='default' bridge='virbr0'/>
      <target dev='vnet12'/>
      <model type='virtio'/>
      <alias name='net0'/>
      <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:32'/>
      <source network='link2' bridge='virbr2'/>
      <target dev='vnet13'/>
      <model type='virtio'/>
      <alias name='net1'/>
      <address type='pci' domain='0x0000' bus='0x06' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:33'/>
      <source network='link5' bridge='virbr5'/>
      <target dev='vnet14'/>
      <model type='virtio'/>
      <alias name='net2'/>
      <address type='pci' domain='0x0000' bus='0x07' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:34'/>
      <source network='link3' bridge='virbr3'/>
      <target dev='vnet15'/>
      <model type='virtio'/>
      <alias name='net3'/>
      <address type='pci' domain='0x0000' bus='0x08' slot='0x00' function='0x0'/>
    </interface>
    <interface type='network'>
      <mac address='52:54:00:0f:44:35'/>
      <source network='link6' bridge='virbr6'/>
      <target dev='vnet16'/>
      <model type='virtio'/>
      <alias name='net4'/>
      <address type='pci' domain='0x0000' bus='0x09' slot='0x00' function='0x0'/>
    </interface>
    <serial type='pty'>
      <source path='/dev/pts/8'/>
      <target port='0'/>
      <alias name='serial0'/>
    </serial>
    <console type='pty' tty='/dev/pts/8'>
      <source path='/dev/pts/8'/>
      <target type='serial' port='0'/>
      <alias name='serial0'/>
    </console>
    <channel type='unix'>
      <source mode='bind' path='/var/lib/libvirt/qemu/channel/target/domain-190-fedora26-dut-2/org.qemu.guest_agent.0'/>
      <target type='virtio' name='org.qemu.guest_agent.0' state='disconnected'/>
      <alias name='channel0'/>
      <address type='virtio-serial' controller='0' bus='0' port='1'/>
    </channel>
    <rng model='virtio'>
      <backend model='random'>/dev/urandom</backend>
      <alias name='rng0'/>
      <address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
    </rng>
  </devices>
  <seclabel type='dynamic' model='selinux' relabel='yes'>
    <label>system_u:system_r:svirt_t:s0:c83,c262</label>
    <imagelabel>system_u:object_r:svirt_image_t:s0:c83,c262</imagelabel>
  </seclabel>
  <seclabel type='dynamic' model='dac' relabel='yes'>
    <label>+0:+0</label>
    <imagelabel>+0:+0</imagelabel>
  </seclabel>
</domain>

running the tests

  • from csit repository, create virtualenv following csit README
    • virtualenv env
    • source env/bin/activate
    • pip install -r requirements.txt
    • export PATH with vpp_api_test, and PYTHONPATH

cmdline to run functional tests only with debug logs. You need the "__init__.robot" present in the folder you give to pybot.

pybot --debugfile /tmp/debugfile --exitonerror -L TRACE -v TOPOLOGY_PATH:topologies/enabled/topology.yaml tests/vpp/func/

Functional test

Tests status:

  • CSIT: 54ad6efd342695d0a7dad5380cc989a8d846f518
  • 3-Nodes topology
  • On VM only
  • honeycomb disabled
  • nested VM disabled

There are a total of 348 Functional tests

list format is path_to_testfile:PASS/FAIL

PASS

crypto_default_eth2p-ethip4ipsectnl-ip4base-func.out:19/0
crypto_default_eth2p-ethip4ipsectptlispgpe-ip4base-func.out:4/0
crypto_default_eth2p-ethip4ipsectptlispgpe-ip6base-func.out:2/0
crypto_default_eth2p-ethip4ipsectptlispgpe-ip6basevrf-func.out:1/0
crypto_default_eth2p-ethip6ipsectnl-ip6base-func.out:19/0
crypto_default_eth2p-ethip6ipsectptlispgpe-ip4base-func.out:2/0
crypto_default_eth2p-ethip6ipsectptlispgpe-ip6base-func.out:2/0
crypto_sw_device_eth2p-ethip4ipsectnlsw-ip4base-func.out:0/0
crypto_sw_device_eth2p-ethip4ipsectptsw-ip4base-func.out:0/0
interfaces_api-crud-tap-func.out:1/0
interfaces_eth2p-ethip4-ip4base-eth-1tap-func.out:2/0
interfaces_eth2p-eth-l2bdbasemaclrn-eth-2tap-func.out:1/0
interfaces_eth2p-eth-l2bdbasemaclrn-l2shg-eth-2tap-func.out:2/0
ip4_eth2p-dot1q-ip4base-func.out:3/0
ip4_eth2p-ethip4-ip4base-copblklistbase-func.out:1/0
ip4_eth2p-ethip4-ip4base-copwhlistbase-func.out:1/0
ip4_eth2p-ethip4-ip4base-func.out:0/0
ip4_eth2p-ethip4-ip4base-ip4arp-func.out:2/0
ip4_eth2p-ethip4-ip4base-ip4proxyarp-func.out:5/0
ip4_eth2p-ethip4-ip4base-ipolicemarkbase-func.out:4/0
ip4_eth2p-ethip4-ip4base-rpf-func.out:2/0
ip4_tunnels_lisp_api-crud-lisp-func.out:5/0
ip4_tunnels_lisp_eth2p-ethip4lispgpe-ip4base-func.out:1/0
ip4_tunnels_lisp_eth2p-ethip4lispgpe-ip4basevrf-func.out:1/0
ip4_tunnels_lisp_eth2p-ethip4lispgpe-ip6base-func.out:1/0
ip4_tunnels_lisp_eth2p-ethip4lispgpe-ip6basevrf-func.out:1/0
ip4_tunnels_lisp_eth2p-ethip4lisp-ip4base-func.out:1/0
ip4_tunnels_lisp_eth2p-ethip4lisp-l2bdbasemaclrn-func.out:1/0
ip4_tunnels_softwire_eth2p-ethip4--ethip6ip4-ip4base--ip6base-swirelw46-func.out:4/0
ip4_tunnels_softwire_eth2p-ethip4--ethip6ip4-ip4base--ip6base-swiremapt-func.out:1/0
ip4_tunnels_vxlan_eth2p-dot1qip4vxlan-l2bdbasemaclrn-func.out:1/0
ip4_tunnels_vxlan_eth2p-ethip4vxlan-l2bdbasemaclrn-func.out:1/0
ip4_tunnels_vxlan_eth2p-ethip4vxlan-l2xcbase-func.out:1/0
ip6_eth2p-ethip6-ip6base-copblklistbase-func.out:1/0
ip6_eth2p-ethip6-ip6base-copwhlistbase-func.out:1/0
ip6_eth2p-ethip6-ip6base-func.out:7/0
ip6_eth2p-ethip6-ip6base-iaclbase-func.out:12/0
ip6_eth2p-ethip6-ip6base-ipolicemarkbase-func.out:4/0
ip6_tunnels_lisp_eth2p-ethip6lispgpe-ip4base-func.out:1/0
ip6_tunnels_lisp_eth2p-ethip6lispgpe-ip6base-func.out:1/0
ip6_tunnels_lisp_eth2p-ethip6lispgpe-ip6basevrf-func.out:1/0
ip6_tunnels_lisp_eth2p-ethip6lisp-l2bdbasemaclrn-func.out:1/0
ip6_tunnels_vxlan_eth2p-ethip6vxlan-l2bdbasemaclrn-func.out:1/0
l2bd_eth2p-dot1ad--dot1q-l2bdbasemaclrn-vlantrans21-func.out:4/0
l2bd_eth2p-dot1q--dot1ad-l2bdbasemaclrn-vlantrans12-func.out:8/0
l2bd_eth2p-dot1q-l2bdbasemaclrn-vlantrans11-func.out:4/0
l2bd_eth2p-eth-l2bdbasemaclrn-func.out:3/0
l2bd_eth2p-eth-l2bdbasemacstc-func.out:1/0
l2xc_eth2p-dot1ad--dot1q-l2xcbase-vlantrans21-func.out:4/0
l2xc_eth2p-dot1ad-l2xcbase-func.out:1/0
l2xc_eth2p-dot1ad-l2xcbase-vlantrans22-func.out:8/0
l2xc_eth2p-dot1q--dot1ad-l2xcbase-vlantrans12-func.out:8/0
l2xc_eth2p-dot1q-l2xcbase-vlantrans11-func.out:4/0
l2xc_eth2p-eth-l2xcbase-func.out:2/0
telemetry_eth2p-ethip4-ip4base-spanrx-func.out:2/0
telemetry_eth2p-ethip6-ip6base-spanrx-func.out:1/0

FAIL

crypto_sw_device_eth2p-ethip4ipsectnlsw-ip4base-func.out:0/0
crypto_sw_device_eth2p-ethip4ipsectptsw-ip4base-func.out:0/0
ip4_eth2p-ethip4-ip4base-func.out:0/0
ip4_eth2p-ethip4-ip4base-ip4dhcpclient-func.out:0/5
ip4_eth2p-ethip4-ip4base-ip4dhcpproxy-func.out:0/2
ip4_eth2p-ethip4-ip4base-ip4ecmp-func.out:0/1
ip6_eth2p-ethip6-ip6base-ip6dhcpproxy-func.out:0/1
ip6_eth2p-ethip6-ip6base-ip6ecmp-func.out:0/1
ip6_eth2p-ethip6-ip6base-ip6ra-func.out:0/4
l2bd_eth4p-eth-l2bdbasemaclrn-l2shg-func.out:0/1
telemetry_eth2p-ethip4-ip4base-ip4ipfixbase-func.out:0/5
telemetry_eth2p-ethip4-ip4base-ip4ipfixscale-func.out:0/2
telemetry_eth2p-ethip6-ip6base-ip6ipfixscale-func.out:0/2

OTHER

crypto_default_eth2p-ethip4ipsectpt-ip4base-func.out:18/1
crypto_default_eth2p-ethip6ipsectpt-ip6base-func.out:18/1
ip4_eth2p-ethip4-ip4base-iaclbase-func.out:10/1
ip4_eth2p-ethip4-ip4basevrf-func.out:4/6
ip4_tunnels_gre_eth2p-ethip4gre-ip4base-func.out:2/4
ip4_tunnels_softwire_eth2p-ethip4--ethip6ip4-ip4base--ip6base-swiremape-func.out:8/1
ip4_tunnels_vxlan_eth4p-ethip4vxlan-l2bdbasemaclrn-l2shg-func.out:1/1
ip6_eth2p-ethip6-ip6basevrf-func.out:5/5
ip6_tunnels_vxlan_eth4p-ethip6vxlan-l2bdbasemaclrn-l2shg-func.out:1/1
l2bd_eth2p-dot1ad-l2bdbasemaclrn-vlantrans22-func.out:7/1
l2xc_eth2p-eth-l2xcbase-iaclbase-func.out:3/1
telemetry_eth2p-ethip6-ip6base-ip6ipfixbase-func.out:2/2

TODO

  • identify ARM64 hardware to replicate CSIT repo
  • make Jira EPIC for CSIT func
  • make Jira EPIC for CSIT performance


  • disk-image-builder scripts
  • patch the bootstrap-* scripts to use on for aarch64
  • add VPP_REPO_URL* VPP_STABLE_VER* files ... (could be any public server for now)

known issues

  1. dpdk does not compiles igb_uio on aarch64 (it seems to require a kernel patch introduced in kernel 4.12: f719582435afe9c7985206e42d804ea6aa315d33). it has been re-enabled in dpdk v17.11 (f1810113590373b157ebba555d6b51f38c8ca10f)