From patchwork Wed Nov 4 08:07:40 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Zhou, JunX W" X-Patchwork-Id: 83661 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E3C46A04E7; Wed, 4 Nov 2020 09:05:36 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D7D81C7F4; Wed, 4 Nov 2020 09:05:35 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id E92B1C6C8 for ; Wed, 4 Nov 2020 09:05:33 +0100 (CET) IronPort-SDR: I9cJ9Aj5SGrprcukWZUVwImC2VOAAHzqjg0MEESNSFLF4P99czkDp1RsGwUlX5js9eB03Ch4gr JAcUMsiMFsLQ== X-IronPort-AV: E=McAfee;i="6000,8403,9794"; a="149033302" X-IronPort-AV: E=Sophos;i="5.77,450,1596524400"; d="scan'208";a="149033302" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Nov 2020 00:05:31 -0800 IronPort-SDR: fesT6pFXV7+FIRnc+mGvNa1zgDzLDk7EBh/ABbexyNW+y8N/lgaPLsaZ+7ri2dVNnsfDV7zxoE A/UHsUP7bFKA== X-IronPort-AV: E=Sophos;i="5.77,450,1596524400"; d="scan'208";a="538819736" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Nov 2020 00:05:27 -0800 From: Zhou Jun To: dts@dpdk.org Cc: Zhou Jun Date: Wed, 4 Nov 2020 16:07:40 +0800 Message-Id: <20201104080740.24143-1-junx.w.zhou@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/TestSuite_short_live: Correct meson build omission error 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" Correct meson build omission error in case test_start_up_time Signed-off-by: Zhou Jun Tested-by: Zhou, Jun --- tests/TestSuite_short_live.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_short_live.py b/tests/TestSuite_short_live.py index 60a3d2e8..88fc3bf2 100644 --- a/tests/TestSuite_short_live.py +++ b/tests/TestSuite_short_live.py @@ -160,7 +160,7 @@ class TestShortLiveApp(TestCase): """ time = [] regex = re.compile(".* (\d+:\d{2}\.\d{2}).*") - out = self.dut.send_expect("echo quit | time ./%s/app/testpmd -c 0x3 -n 4 --no-pci -- -i" % self.target, "#", 120) + out = self.dut.send_expect("echo quit | time ./%s -c 0x3 -n 4 --no-pci -- -i" % self.app_testpmd, "#", 120) time = regex.findall(out) if time != []: