From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 11EBB4F9C for ; Thu, 22 Mar 2018 10:45:20 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Mar 2018 02:45:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,344,1517904000"; d="scan'208";a="44334598" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by orsmga002.jf.intel.com with ESMTP; 22 Mar 2018 02:45:18 -0700 From: "han,yingya" To: dts@dpdk.org Cc: "han,yingya" Date: Thu, 22 Mar 2018 17:46:32 +0800 Message-Id: <1521711992-91877-1-git-send-email-yingyax.han@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1]tests/queue_start_stop: fix testpmd quit 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: , X-List-Received-Date: Thu, 22 Mar 2018 09:45:23 -0000 Signed-off-by: han,yingya --- tests/TestSuite_queue_start_stop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_queue_start_stop.py b/tests/TestSuite_queue_start_stop.py index cc031f5..3dd37b3 100644 --- a/tests/TestSuite_queue_start_stop.py +++ b/tests/TestSuite_queue_start_stop.py @@ -177,7 +177,7 @@ class TestQueueStartStop(TestCase): try: self.dut.send_expect("stop", "testpmd>") - self.dut.send_expect("quit", "testpmd>") + self.dut.send_expect("quit", "#") except: print "Failed to quit testpmd" -- 1.9.3