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 17B69A04DB; Thu, 3 Sep 2020 10:30:29 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8A17F1C0B4; Thu, 3 Sep 2020 10:30:28 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 7E15EE07 for ; Thu, 3 Sep 2020 10:30:27 +0200 (CEST) IronPort-SDR: 8uMaN4AZWr9Y+JdIZ7KyERQF3wE4fftiSASQbt3usB3IqJic+dFnTBEq3aXiDRL9qFWbpe2kfa E/CC7wtt1qUg== X-IronPort-AV: E=McAfee;i="6000,8403,9732"; a="221753245" X-IronPort-AV: E=Sophos;i="5.76,386,1592895600"; d="scan'208";a="221753245" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Sep 2020 01:30:27 -0700 IronPort-SDR: 3yZjoBKe2vaLV4Hm3Zi5Ls9dBxJt/tpuPBwW4+gh0O7v0TzgMK31PStdJhaDDzQVs10MJcdopl oOIhY8ROzk0g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,385,1592895600"; d="scan'208";a="315404150" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 03 Sep 2020 01:30:25 -0700 From: Chen Linglix To: dts@dpdk.org Cc: Chen Linglix Date: Thu, 3 Sep 2020 16:28:25 +0800 Message-Id: <20200903082839.30213-2-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200903082839.30213-1-linglix.chen@intel.com> References: <20200903082839.30213-1-linglix.chen@intel.com> Subject: [dts] [dts 01/15] tests/TestSuite_unit_tests_cmdline:update to support meson build 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" Signed-off-by: Chen Linglix --- tests/TestSuite_unit_tests_cmdline.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestSuite_unit_tests_cmdline.py b/tests/TestSuite_unit_tests_cmdline.py index 057020c..ac49c1b 100644 --- a/tests/TestSuite_unit_tests_cmdline.py +++ b/tests/TestSuite_unit_tests_cmdline.py @@ -71,7 +71,8 @@ class TestUnitTestsCmdline(TestCase): Run cmdline autotests in RTE command line. """ eal_params = self.dut.create_eal_parameters(cores=self.cores) - self.dut.send_expect("./%s/app/test %s" % (self.target, eal_params), "R.*T.*E.*>.*>", 60) + app_name = self.dut.apps_name['test'] + self.dut.send_expect(app_name + eal_params,"R.*T.*E.*>.*>", 60) out = self.dut.send_expect("cmdline_autotest", "RTE>>", 60) self.dut.send_expect("quit", "# ") self.verify("Test OK" in out, "Test failed") -- 1.8.3.1