From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 884AFA0554; Tue, 18 Feb 2020 05:23:24 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 796241D8CD; Tue, 18 Feb 2020 05:23:24 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 55EDB1D565 for ; Tue, 18 Feb 2020 05:23:21 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Feb 2020 20:23:20 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,455,1574150400"; d="scan'208";a="348618403" Received: from cy-optiplex-5060.sh.intel.com ([10.240.179.63]) by fmsmga001.fm.intel.com with ESMTP; 17 Feb 2020 20:23:19 -0800 From: Haiyang Zhao To: dts@dpdk.org Cc: Haiyang Zhao Date: Tue, 18 Feb 2020 12:22:45 +0800 Message-Id: <20200218042246.2994-2-haiyangx.zhao@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200218042246.2994-1-haiyangx.zhao@intel.com> References: <20200218042246.2994-1-haiyangx.zhao@intel.com> Subject: [dts] [PATCH V1] tests/l2fwd:fix a bug X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" *.delete the slice of test_queues, which is to reduce the test time for debuging case. Signed-off-by: Haiyang Zhao --- tests/TestSuite_l2fwd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_l2fwd.py b/tests/TestSuite_l2fwd.py index 459b9c9..382ec60 100644 --- a/tests/TestSuite_l2fwd.py +++ b/tests/TestSuite_l2fwd.py @@ -191,7 +191,7 @@ class TestL2fwd(TestCase): self.tester.scapy_execute() cnt += 1 - for queues in self.test_queues[0:2]: + for queues in self.test_queues: command_line = "./examples/l2fwd/build/app/l2fwd %s -- -q %s -p %s &" % \ (eal_params, str(queues['queues']), port_mask) -- 2.17.1