test suite reviews and discussions
 help / color / mirror / Atom feed
From: wang fei <feix.y.wang@intel.com>
To: dts@dpdk.org
Cc: wang fei <feix.y.wang@intel.com>
Subject: [dts] [PATCH V3] add TREX support in DTS framework
Date: Wed, 10 Jan 2018 12:53:26 +0800	[thread overview]
Message-ID: <1515560006-23633-1-git-send-email-feix.y.wang@intel.com> (raw)

For next branch framework/tester.py: enabling trex for DTS and 
implement througput function for performace test.

Signed-off-by: wang fei <feix.y.wang@intel.com>
---
 framework/tester.py | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/framework/tester.py b/framework/tester.py
index 1c854d7..1c382b2 100644
--- a/framework/tester.py
+++ b/framework/tester.py
@@ -46,7 +46,7 @@ from utils import GREEN, convert_int2ip, convert_ip2int
 from exception import ParameterInvalidException
 from multiprocessing import Process
 
-
+from pktgen import getPacketGenerator, PktgenConf
 class Tester(Crb):
 
     """
@@ -139,6 +139,7 @@ class Tester(Crb):
         self.pci_devices_information()
         self.restore_interfaces()
         self.scan_ports()
+        self.pktgen_init()
 
     def get_local_port(self, remotePort):
         """
@@ -379,6 +380,16 @@ class Tester(Crb):
                                     'mac': macaddr,
                                     'ipv6': ipv6})
 
+    def pktgen_init(self):
+        pktgen = PktgenConf()
+        pktgen_inst_type = pktgen.pktgen_conf.get_sections()
+        if len(pktgen_inst_type) == 1 and pktgen_inst_type[0] == "TREX":
+            pktgen_type = "TREX"
+            # init packet generator instance
+            self.pktgen = getPacketGenerator(self, pktgen_type)
+            # prepare running environment
+            self.pktgen.prepare_generator()
+
     def send_ping(self, localPort, ipv4, mac):
         """
         Send ping6 packet from local port with destination ipv4 address.
-- 
2.7.4

             reply	other threads:[~2018-01-10  2:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-10  4:53 wang fei [this message]
2018-01-10 13:57 ` Liu, Yong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1515560006-23633-1-git-send-email-feix.y.wang@intel.com \
    --to=feix.y.wang@intel.com \
    --cc=dts@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).