test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2] tests/vhost_virtio_user_interrupt:add allow pci params when start testpmd and fix spelling mistakes
@ 2021-02-25  1:58 Ling Wei
  2021-02-25  2:17 ` Ling, WeiX
  2021-03-02  5:11 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: Ling Wei @ 2021-02-25  1:58 UTC (permalink / raw)
  To: dts; +Cc: Ling Wei

v1:
Add allow pci params when start testpmd.

v2:
Fix spelling mistakes backed to backend.

Signed-off-by: Ling Wei <weix.ling@intel.com>
---
 tests/TestSuite_vhost_virtio_user_interrupt.py | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/tests/TestSuite_vhost_virtio_user_interrupt.py b/tests/TestSuite_vhost_virtio_user_interrupt.py
index 9f89c460..29693f43 100644
--- a/tests/TestSuite_vhost_virtio_user_interrupt.py
+++ b/tests/TestSuite_vhost_virtio_user_interrupt.py
@@ -127,17 +127,21 @@ class TestVirtioUserInterrupt(TestCase):
         testcmd = self.app_testpmd_path + " "
         vdev = ["net_vhost0,iface=vhost-net,queues=1,client=0"]
         para = " -- -i --rxq=1 --txq=1"
+        allow_pci = [self.pci_info]
+        if dmas:
+            for item in self.used_cbdma:
+                allow_pci.append(item)
         if len(pci) == 0:
             if dmas:
                 vdev = ["net_vhost0,iface=vhost-net,queues=1,dmas=[%s]" % dmas]
-                eal_params = self.dut.create_eal_parameters(cores=self.core_list_vhost, vdevs=vdev)
+                eal_params = self.dut.create_eal_parameters(cores=self.core_list_vhost, ports=allow_pci, vdevs=vdev)
             else:
-                eal_params = self.dut.create_eal_parameters(cores=self.core_list_vhost, ports=[self.pci_info], vdevs=vdev)
+                eal_params = self.dut.create_eal_parameters(cores=self.core_list_vhost, ports=allow_pci, vdevs=vdev)
         else:
             if dmas:
                 vdev = ["net_vhost0,iface=vhost-net,queues=1,client=0,dmas=[%s]" % dmas]
                 para = " -- -i"
-                eal_params = self.dut.create_eal_parameters(cores=self.core_list_vhost, ports=pci, prefix='vhost', vdevs=vdev)
+                eal_params = self.dut.create_eal_parameters(cores=self.core_list_vhost, ports=allow_pci, prefix='vhost', vdevs=vdev)
             else:
                 eal_params = self.dut.create_eal_parameters(cores=self.core_list_vhost, prefix='vhost', no_pci=True, vdevs=vdev)
         cmd_vhost_user = testcmd + eal_params + para
@@ -217,7 +221,7 @@ class TestVirtioUserInterrupt(TestCase):
             self.dut.send_expect('./usertools/dpdk-devbind.py -u %s' % self.device_str, '# ', 30)
             self.dut.send_expect('./usertools/dpdk-devbind.py --force --bind=ioatdma  %s' % self.device_str, '# ', 60)
 
-    def test_split_ring_virtio_user_interrupt_with_vhost_net_as_backed(self):
+    def test_split_ring_virtio_user_interrupt_with_vhost_net_as_backend(self):
         """
         Check the virtio-user interrupt can work when use vhost-net as backend
         """
@@ -238,7 +242,7 @@ class TestVirtioUserInterrupt(TestCase):
         self.check_interrupt_log(status="waked up")
         self.dut.send_expect("killall -s INT ping", "#")
 
-    def test_split_ring_virtio_user_interrupt_with_vhost_user_as_backed(self):
+    def test_split_ring_virtio_user_interrupt_with_vhost_user_as_backend(self):
         """
         Check the virtio-user interrupt can work when use vhost-user as backend
         """
@@ -263,7 +267,7 @@ class TestVirtioUserInterrupt(TestCase):
         self.vhost.send_expect("quit", "#", 20)
         self.check_virtio_side_link_status("down")
 
-    def test_packed_ring_virtio_user_interrupt_with_vhost_user_as_backed(self):
+    def test_packed_ring_virtio_user_interrupt_with_vhost_user_as_backend(self):
         """
         Check the virtio-user interrupt can work when use vhost-user as backend
         """
@@ -277,7 +281,7 @@ class TestVirtioUserInterrupt(TestCase):
             time.sleep(3)
             self.check_interrupt_log(status="waked up")
 
-    def test_packed_ring_virtio_user_interrupt_with_vhost_net_as_backed(self):
+    def test_packed_ring_virtio_user_interrupt_with_vhost_net_as_backend(self):
         """
         Check the virtio-user interrupt can work when use vhost-net as backend
         """
-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/vhost_virtio_user_interrupt:add allow pci params when start testpmd and fix spelling mistakes
  2021-02-25  1:58 [dts] [PATCH V2] tests/vhost_virtio_user_interrupt:add allow pci params when start testpmd and fix spelling mistakes Ling Wei
@ 2021-02-25  2:17 ` Ling, WeiX
  2021-03-02  5:11 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Ling, WeiX @ 2021-02-25  2:17 UTC (permalink / raw)
  To: Ling, WeiX, dts

[-- Attachment #1: Type: text/plain, Size: 376 bytes --]

Tested-by: Wei Ling <weix.ling@intel.com>

Regards,
Ling Wei

> -----Original Message-----
> From: Ling Wei <weix.ling@intel.com>
> Sent: Thursday, February 25, 2021 09:59 AM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V2] tests/vhost_virtio_user_interrupt:add allow pci
> params when start testpmd and fix spelling mistakes


[-- Attachment #2: TestVhostUserInterrupt.log --]
[-- Type: application/octet-stream, Size: 41729 bytes --]

19/02/2021 20:11:19                            dts: 
TEST SUITE : TestVhostUserInterrupt
19/02/2021 20:11:19                            dts: NIC :        fortville_spirit
19/02/2021 20:11:19             dut.10.240.183.220: 
19/02/2021 20:11:19                         tester: 
19/02/2021 20:11:19             dut.10.240.183.220: cp ./examples/l3fwd-power/main.c .
19/02/2021 20:11:20             dut.10.240.183.220: 
19/02/2021 20:11:20             dut.10.240.183.220: sed -i '/DEV_RX_OFFLOAD_CHECKSUM/d' ./examples/l3fwd-power/main.c
19/02/2021 20:11:20             dut.10.240.183.220: 
19/02/2021 20:11:20             dut.10.240.183.220: meson configure -Dexamples=l3fwd-power x86_64-native-linuxapp-gcc
19/02/2021 20:11:20             dut.10.240.183.220: 
19/02/2021 20:11:20             dut.10.240.183.220: ninja -C x86_64-native-linuxapp-gcc
19/02/2021 20:11:25             dut.10.240.183.220: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 21.05.0-rc0
C compiler for the host machine: gcc (gcc 9.3.0 "gcc (Ubuntu 9.3.0-10ubuntu2) 9.3.0")
C linker for the host machine: gcc ld.bfd 2.34
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES (cached)
Library libfdt found: YES
Has header "fdt.h" : YES (cached)
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency libbsd found: NO (tried pkgconfig)
Dependency libpcap found: YES 1.9.1 (cached)
Has header "pcap.h" with dependency libpcap: YES (cached)
Compiler for C supports arguments -Wextra: YES (cached)
../config/meson.build:238: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wdeprecated: YES (cached)
Compiler for C supports arguments -Wformat: YES (cached)
Compiler for C supports arguments -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wformat-security: YES (cached)
Compiler for C supports arguments -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wnested-externs: YES (cached)
Compiler for C supports arguments -Wold-style-definition: YES (cached)
Compiler for C supports arguments -Wpointer-arith: YES (cached)
Compiler for C supports arguments -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wundef: YES (cached)
Compiler for C supports arguments -Wwrite-strings: YES (cached)
Compiler for C supports arguments -Wno-address-of-packed-member -Waddress-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: YES (cached)
Fetching value of define "__SSE4_2__" : 1 (cached)
Fetching value of define "__AES__" : 1 (cached)
Fetching value of define "__AVX__" : 1 (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Fetching value of define "__AVX512CD__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__RDRND__" : 1 (cached)
Fetching value of define "__RDSEED__" : 1 (cached)
Fetching value of define "__VPCLMULQDQ__" :  (cached)
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_mbuf: Defining dependency "mbuf"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__VPCLMULQDQ__" :  (cached)
Compiler for C supports arguments -mpclmul: YES (cached)
Compiler for C supports arguments -maes: YES (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -mavx512dq: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mvpclmulqdq: YES (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Compiler for C supports arguments -mavx: YES (cached)
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.12 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__AVX512CD__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: NO (tried pkgconfig)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-to-int-cast: YES (cached)
Message: drivers/common/iavf: Defining dependency "common_iavf"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Run-time dependency libmlx5 found: NO (tried pkgconfig)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/common/qat: Defining dependency "common_qat"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/net/af_packet: Defining dependency "net_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "net_ark"
Message: drivers/net/atlantic: Defining dependency "net_atlantic"
Message: drivers/net/avp: Defining dependency "net_avp"
Message: drivers/net/axgbe: Defining dependency "net_axgbe"
Message: drivers/net/bonding: Defining dependency "net_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "net_dpaa"
Message: drivers/net/dpaa2: Defining dependency "net_dpaa2"
Compiler for C supports arguments -Wno-uninitialized -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/e1000: Defining dependency "net_e1000"
Message: drivers/net/ena: Defining dependency "net_ena"
Message: drivers/net/enetc: Defining dependency "net_enetc"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/enic: Defining dependency "net_enic"
Message: drivers/net/failsafe: Defining dependency "net_failsafe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/ice: Defining dependency "net_ice"
Message: drivers/net/igc: Defining dependency "net_igc"
Message: drivers/net/ionic: Defining dependency "net_ionic"
Message: drivers/net/ipn3ke: Defining dependency "net_ipn3ke"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "net_ixgbe"
Message: drivers/net/kni: Defining dependency "net_kni"
Message: drivers/net/liquidio: Defining dependency "net_liquidio"
Message: drivers/net/memif: Defining dependency "net_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/null: Defining dependency "net_null"
Message: drivers/net/octeontx: Defining dependency "net_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES (cached)
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Message: drivers/net/octeontx_ep: Defining dependency "net_octeontx_ep"
Message: drivers/net/pcap: Defining dependency "net_pcap"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "net_qede"
Message: drivers/net/ring: Defining dependency "net_ring"
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES (cached)
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "net_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "net_thunderx"
Message: drivers/net/txgbe: Defining dependency "net_txgbe"
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: drivers/net/vdev_netvsc: Defining dependency "net_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "net_vhost"
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: drivers/net/virtio: Defining dependency "net_virtio"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "net_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency librt found: NO (tried pkgconfig and cmake)
Library librt found: YES
Message: drivers/raw/ifpga: Defining dependency "raw_ifpga"
Message: drivers/raw/ioat: Defining dependency "raw_ioat"
Message: drivers/raw/ntb: Defining dependency "raw_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "raw_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "raw_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "raw_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Run-time dependency libaarch64crypto found: NO (tried pkgconfig)
Message: drivers/crypto/bcmfs: Defining dependency "crypto_bcmfs"
Message: drivers/crypto/caam_jr: Defining dependency "crypto_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/crypto/nitrox: Defining dependency "crypto_nitrox"
Message: drivers/crypto/null: Defining dependency "crypto_null"
Message: drivers/crypto/octeontx: Defining dependency "crypto_octeontx"
Message: drivers/crypto/octeontx2: Defining dependency "crypto_octeontx2"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/scheduler: Defining dependency "crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "crypto_virtio"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig)
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/compress/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/compress/octeontx: Defining dependency "compress_octeontx"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "compress_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "regex_octeontx2"
Message: drivers/vdpa/ifc: Defining dependency "vdpa_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Message: drivers/event/octeontx2: Defining dependency "event_octeontx2"
Message: drivers/event/opdl: Defining dependency "event_opdl"
Message: drivers/event/skeleton: Defining dependency "event_skeleton"
Message: drivers/event/sw: Defining dependency "event_sw"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/null: Defining dependency "baseband_null"
Library libturbo found: NO
Library libldpc_decoder_5gnr found: NO
Message: drivers/baseband/turbo_sw: Defining dependency "baseband_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

libs:
	kvargs, telemetry, eal, ring, rcu, mempool, mbuf, net, 
	meter, ethdev, pci, cmdline, metrics, hash, timer, acl, 
	bbdev, bitratestats, cfgfile, compressdev, cryptodev, distributor, efd, eventdev, 
	gro, gso, ip_frag, jobstats, kni, latencystats, lpm, member, 
	power, pdump, rawdev, regexdev, rib, reorder, sched, security, 
	stack, vhost, ipsec, fib, port, table, pipeline, flow_classify, 
	bpf, graph, node, 

Message: 
===============
Drivers Enabled
===============

common:
	cpt, dpaax, iavf, octeontx, octeontx2, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ionic, 
	ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, null, 
	octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, 
	softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
	
raw:
	dpaa2_cmdif, dpaa2_qdma, ifpga, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
	
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

Message: 
=================
Content Skipped
=================

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	crypto/qat:	missing dependency, libcrypto
	net/af_xdp:	missing dependency, "libbpf"
	net/mlx4:	missing dependency, "mlx4"
	net/mlx5:	missing internal dependency, "common_mlx5"
	net/mvneta:	missing dependency, "libmusdk"
	net/mvpp2:	missing dependency, "libmusdk"
	net/nfb:	missing dependency, "libnfb"
	net/szedata2:	missing dependency, "libsze2"
	crypto/aesni_gcm:	missing dependency, "libIPSec_MB"
	crypto/aesni_mb:	missing dependency, "libIPSec_MB"
	crypto/armv8:	missing dependency, "libAArch64crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	compress/mlx5:	missing internal dependency, "common_mlx5"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 1029

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/3] Compiling C object examples/dpdk-l3fwd-power.p/l3fwd-power_perf_core.c.o
[2/3] Compiling C object examples/dpdk-l3fwd-power.p/l3fwd-power_main.c.o
[3/3] Linking target examples/dpdk-l3fwd-power
19/02/2021 20:11:25             dut.10.240.183.220: ls x86_64-native-linuxapp-gcc/examples/dpdk-l3fwd-power 
19/02/2021 20:11:25             dut.10.240.183.220: x86_64-native-linuxapp-gcc/examples/dpdk-l3fwd-power
19/02/2021 20:11:25             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
19/02/2021 20:11:25             dut.10.240.183.220: 1048576
19/02/2021 20:11:25         TestVhostUserInterrupt: Test Case test_wake_up_packed_ring_vhost_user_core_with_l3fwd_power_sample Begin
19/02/2021 20:11:25             dut.10.240.183.220: 
19/02/2021 20:11:26                         tester: 
19/02/2021 20:11:26             dut.10.240.183.220: killall -s INT dpdk-testpmd 
19/02/2021 20:11:26             dut.10.240.183.220: dpdk-testpmd: no process found
19/02/2021 20:11:26             dut.10.240.183.220: killall dpdk-l3fwd-power 
19/02/2021 20:11:26             dut.10.240.183.220: dpdk-l3fwd-power: no process found
19/02/2021 20:11:26             dut.10.240.183.220: rm -rf ./vhost-net*
19/02/2021 20:11:26             dut.10.240.183.220: 
19/02/2021 20:11:30             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
19/02/2021 20:11:30             dut.10.240.183.220: 1048576
19/02/2021 20:11:30         TestVhostUserInterrupt: Launch l3fwd_sample sample:
19/02/2021 20:11:57         TestVhostUserInterrupt: Launch l3fwd-power sample finished
19/02/2021 20:12:13         TestVhostUserInterrupt: lcore 3 is waked up from rx interrupt on port 0 queue 0
19/02/2021 20:12:28         TestVhostUserInterrupt: lcore 3 sleeps until interrupt triggers
19/02/2021 20:12:43         TestVhostUserInterrupt: lcore 3 is waked up from rx interrupt on port 0 queue 0
19/02/2021 20:12:43         TestVhostUserInterrupt: Test Case test_wake_up_packed_ring_vhost_user_core_with_l3fwd_power_sample Result PASSED:
19/02/2021 20:12:44             dut.10.240.183.220: killall dpdk-l3fwd-power 
19/02/2021 20:12:44             dut.10.240.183.220: dpdk-l3fwd-power: no process found
19/02/2021 20:12:44             dut.10.240.183.220: killall -s INT dpdk-testpmd 
19/02/2021 20:12:44             dut.10.240.183.220: dpdk-testpmd: no process found
19/02/2021 20:12:44             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
19/02/2021 20:12:46         TestVhostUserInterrupt: Test Case test_wake_up_packed_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled Begin
19/02/2021 20:12:46             dut.10.240.183.220:  
19/02/2021 20:12:46                         tester: 
19/02/2021 20:12:46             dut.10.240.183.220: killall -s INT dpdk-testpmd 
19/02/2021 20:12:46             dut.10.240.183.220: dpdk-testpmd: no process found
19/02/2021 20:12:46             dut.10.240.183.220: killall dpdk-l3fwd-power 
19/02/2021 20:12:46             dut.10.240.183.220: dpdk-l3fwd-power: no process found
19/02/2021 20:12:46             dut.10.240.183.220: rm -rf ./vhost-net*
19/02/2021 20:12:46             dut.10.240.183.220: 
19/02/2021 20:12:50             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
19/02/2021 20:12:50             dut.10.240.183.220: 1048576
19/02/2021 20:12:51         TestVhostUserInterrupt: Launch l3fwd_sample sample:
19/02/2021 20:13:18         TestVhostUserInterrupt: Launch l3fwd-power sample finished
19/02/2021 20:13:33         TestVhostUserInterrupt: lcore 6 is waked up from rx interrupt on port 0 queue 0
19/02/2021 20:13:33         TestVhostUserInterrupt: lcore 7 is waked up from rx interrupt on port 0 queue 1
19/02/2021 20:13:33         TestVhostUserInterrupt: lcore 8 is waked up from rx interrupt on port 0 queue 2
19/02/2021 20:13:33         TestVhostUserInterrupt: lcore 9 is waked up from rx interrupt on port 0 queue 3
19/02/2021 20:13:48         TestVhostUserInterrupt: lcore 6 sleeps until interrupt triggers
19/02/2021 20:13:48         TestVhostUserInterrupt: lcore 7 sleeps until interrupt triggers
19/02/2021 20:13:48         TestVhostUserInterrupt: lcore 8 sleeps until interrupt triggers
19/02/2021 20:13:48         TestVhostUserInterrupt: lcore 9 sleeps until interrupt triggers
19/02/2021 20:14:03         TestVhostUserInterrupt: lcore 6 is waked up from rx interrupt on port 0 queue 0
19/02/2021 20:14:03         TestVhostUserInterrupt: lcore 7 is waked up from rx interrupt on port 0 queue 1
19/02/2021 20:14:03         TestVhostUserInterrupt: lcore 8 is waked up from rx interrupt on port 0 queue 2
19/02/2021 20:14:03         TestVhostUserInterrupt: lcore 9 is waked up from rx interrupt on port 0 queue 3
19/02/2021 20:14:03         TestVhostUserInterrupt: Test Case test_wake_up_packed_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled Result PASSED:
19/02/2021 20:14:05             dut.10.240.183.220: killall dpdk-l3fwd-power 
19/02/2021 20:14:05             dut.10.240.183.220: dpdk-l3fwd-power: no process found
19/02/2021 20:14:05             dut.10.240.183.220: killall -s INT dpdk-testpmd 
19/02/2021 20:14:05             dut.10.240.183.220: dpdk-testpmd: no process found
19/02/2021 20:14:05             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
19/02/2021 20:14:06         TestVhostUserInterrupt: Test Case test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample Begin
19/02/2021 20:14:06             dut.10.240.183.220:  
19/02/2021 20:14:07                         tester: 
19/02/2021 20:14:07             dut.10.240.183.220: killall -s INT dpdk-testpmd 
19/02/2021 20:14:07             dut.10.240.183.220: dpdk-testpmd: no process found
19/02/2021 20:14:07             dut.10.240.183.220: killall dpdk-l3fwd-power 
19/02/2021 20:14:07             dut.10.240.183.220: dpdk-l3fwd-power: no process found
19/02/2021 20:14:07             dut.10.240.183.220: rm -rf ./vhost-net*
19/02/2021 20:14:07             dut.10.240.183.220: 
19/02/2021 20:14:11             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
19/02/2021 20:14:11             dut.10.240.183.220: 1048576
19/02/2021 20:14:11         TestVhostUserInterrupt: Launch l3fwd_sample sample:
19/02/2021 20:14:38         TestVhostUserInterrupt: Launch l3fwd-power sample finished
19/02/2021 20:14:54         TestVhostUserInterrupt: lcore 3 is waked up from rx interrupt on port 0 queue 0
19/02/2021 20:15:09         TestVhostUserInterrupt: lcore 3 sleeps until interrupt triggers
19/02/2021 20:15:24         TestVhostUserInterrupt: lcore 3 is waked up from rx interrupt on port 0 queue 0
19/02/2021 20:15:24         TestVhostUserInterrupt: Test Case test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample Result PASSED:
19/02/2021 20:15:25             dut.10.240.183.220: killall dpdk-l3fwd-power 
19/02/2021 20:15:25             dut.10.240.183.220: dpdk-l3fwd-power: no process found
19/02/2021 20:15:25             dut.10.240.183.220: killall -s INT dpdk-testpmd 
19/02/2021 20:15:25             dut.10.240.183.220: dpdk-testpmd: no process found
19/02/2021 20:15:25             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
19/02/2021 20:15:27         TestVhostUserInterrupt: Test Case test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled Begin
19/02/2021 20:15:27             dut.10.240.183.220:  
19/02/2021 20:15:27                         tester: 
19/02/2021 20:15:27             dut.10.240.183.220: killall -s INT dpdk-testpmd 
19/02/2021 20:15:27             dut.10.240.183.220: dpdk-testpmd: no process found
19/02/2021 20:15:27             dut.10.240.183.220: killall dpdk-l3fwd-power 
19/02/2021 20:15:27             dut.10.240.183.220: dpdk-l3fwd-power: no process found
19/02/2021 20:15:27             dut.10.240.183.220: rm -rf ./vhost-net*
19/02/2021 20:15:27             dut.10.240.183.220: 
19/02/2021 20:15:31             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
19/02/2021 20:15:31             dut.10.240.183.220: 1048576
19/02/2021 20:15:31         TestVhostUserInterrupt: Launch l3fwd_sample sample:
19/02/2021 20:15:59         TestVhostUserInterrupt: Launch l3fwd-power sample finished
19/02/2021 20:16:14         TestVhostUserInterrupt: lcore 6 is waked up from rx interrupt on port 0 queue 0
19/02/2021 20:16:14         TestVhostUserInterrupt: lcore 7 is waked up from rx interrupt on port 0 queue 1
19/02/2021 20:16:14         TestVhostUserInterrupt: lcore 8 is waked up from rx interrupt on port 0 queue 2
19/02/2021 20:16:14         TestVhostUserInterrupt: lcore 9 is waked up from rx interrupt on port 0 queue 3
19/02/2021 20:16:29         TestVhostUserInterrupt: lcore 6 sleeps until interrupt triggers
19/02/2021 20:16:29         TestVhostUserInterrupt: lcore 7 sleeps until interrupt triggers
19/02/2021 20:16:29         TestVhostUserInterrupt: lcore 8 sleeps until interrupt triggers
19/02/2021 20:16:29         TestVhostUserInterrupt: lcore 9 sleeps until interrupt triggers
19/02/2021 20:16:44         TestVhostUserInterrupt: lcore 6 is waked up from rx interrupt on port 0 queue 0
19/02/2021 20:16:44         TestVhostUserInterrupt: lcore 7 is waked up from rx interrupt on port 0 queue 1
19/02/2021 20:16:44         TestVhostUserInterrupt: lcore 8 is waked up from rx interrupt on port 0 queue 2
19/02/2021 20:16:44         TestVhostUserInterrupt: lcore 9 is waked up from rx interrupt on port 0 queue 3
19/02/2021 20:16:44         TestVhostUserInterrupt: Test Case test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled Result PASSED:
19/02/2021 20:16:46             dut.10.240.183.220: killall dpdk-l3fwd-power 
19/02/2021 20:16:46             dut.10.240.183.220: dpdk-l3fwd-power: no process found
19/02/2021 20:16:46             dut.10.240.183.220: killall -s INT dpdk-testpmd 
19/02/2021 20:16:46             dut.10.240.183.220: dpdk-testpmd: no process found
19/02/2021 20:16:46             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
19/02/2021 20:16:47         TestVhostUserInterrupt: Test Case test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled_and_cbdma_enabled Result SKIPPED:
19/02/2021 20:16:47                            dts: 
TEST SUITE ENDED: TestVhostUserInterrupt

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/vhost_virtio_user_interrupt:add allow pci params when start testpmd and fix spelling mistakes
  2021-02-25  1:58 [dts] [PATCH V2] tests/vhost_virtio_user_interrupt:add allow pci params when start testpmd and fix spelling mistakes Ling Wei
  2021-02-25  2:17 ` Ling, WeiX
@ 2021-03-02  5:11 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2021-03-02  5:11 UTC (permalink / raw)
  To: Ling, WeiX, dts; +Cc: Ling, WeiX

> v1:
> Add allow pci params when start testpmd.
> 
> v2:
> Fix spelling mistakes backed to backend.
> 
> Signed-off-by: Ling Wei <weix.ling@intel.com>

Applied.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-02  5:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-25  1:58 [dts] [PATCH V2] tests/vhost_virtio_user_interrupt:add allow pci params when start testpmd and fix spelling mistakes Ling Wei
2021-02-25  2:17 ` Ling, WeiX
2021-03-02  5:11 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).