From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 58BAF5F36 for ; Wed, 24 Oct 2018 04:22:04 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Oct 2018 19:22:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,418,1534834800"; d="scan'208";a="98018165" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 23 Oct 2018 19:22:03 -0700 From: yaobing To: dts@dpdk.org Cc: yaobing Date: Wed, 24 Oct 2018 10:24:52 +0800 Message-Id: <1540347894-9652-10-git-send-email-bingx.y.yao@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1540347894-9652-1-git-send-email-bingx.y.yao@intel.com> References: <1540347894-9652-1-git-send-email-bingx.y.yao@intel.com> Subject: [dts] [PATCH V1 10/12] tests/unit_tests_ring:change hard coding for core numbers 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: , X-List-Received-Date: Wed, 24 Oct 2018 02:22:04 -0000 Cores number is different on different platform,virtual machine maybe has not assigned cores more than 5 cores,change hard coding for core numbers in test app startup options Signed-off-by: yaobing --- tests/TestSuite_unit_tests_ring.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_unit_tests_ring.py b/tests/TestSuite_unit_tests_ring.py index 701ac53..a60adb2 100644 --- a/tests/TestSuite_unit_tests_ring.py +++ b/tests/TestSuite_unit_tests_ring.py @@ -37,6 +37,7 @@ Run all Ring autotests from test_case import TestCase +import utils # # @@ -56,7 +57,9 @@ class TestUnitTestsRing(TestCase): """ Run at the start of each test suite. """ - pass + cores = self.dut.get_core_list("all") + self.coremask = utils.create_mask(cores) + def set_up(self): """ Run before each test case. @@ -68,7 +71,7 @@ class TestUnitTestsRing(TestCase): Run ring autotest. """ - self.dut.send_expect("./%s/app/test -n 1 -c f" % self.target, "R.*T.*E.*>.*>", 60) + self.dut.send_expect("./%s/app/test -n 1 -c %s" % (self.target, self.coremask), "R.*T.*E.*>.*>", 60) out = self.dut.send_expect("ring_autotest", "RTE>>", 36000) self.verify("Test OK" in out, "Test failed") @@ -77,7 +80,7 @@ class TestUnitTestsRing(TestCase): Run ring performance autotest. """ - self.dut.send_expect("./%s/app/test -n 1 -c e" % self.target, "R.*T.*E.*>.*>", 60) + self.dut.send_expect("./%s/app/test -n 1 -c %s" % (self.target ,self.coremask), "R.*T.*E.*>.*>", 60) out = self.dut.send_expect("ring_perf_autotest", "RTE>>", 210) self.dut.send_expect("quit", "# ") self.verify("Test OK" in out, "Test failed") -- 2.17.2