From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id CCD3595D6 for ; Wed, 3 Feb 2016 09:42:06 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP; 03 Feb 2016 00:42:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,389,1449561600"; d="scan'208";a="646382293" Received: from stv-crb-56.sh.intel.com (HELO [10.239.128.116]) ([10.239.128.116]) by FMSMGA003.fm.intel.com with ESMTP; 03 Feb 2016 00:42:06 -0800 Message-ID: <56B1BDCD.1000309@intel.com> Date: Wed, 03 Feb 2016 16:43:57 +0800 From: "Liu, Yong" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Jingguo Fu , dts@dpdk.org References: <1454483843-25533-1-git-send-email-jingguox.fu@intel.com> In-Reply-To: <1454483843-25533-1-git-send-email-jingguox.fu@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dts] [DTS][PATCH 1/2] update cmdline test plan for parameter change update unit test plan: for cmdline, objtest -> object 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, 03 Feb 2016 08:42:07 -0000 Applied, please separate git commit log and git commit title. Email subject should be small and easy to read. On 02/03/2016 03:17 PM, Jingguo Fu wrote: > Signed-off-by: Jingguo Fu > --- > test_plans/cmdline_test_plan.rst | 20 ++++++++++---------- > 1 file changed, 10 insertions(+), 10 deletions(-) > > diff --git a/test_plans/cmdline_test_plan.rst b/test_plans/cmdline_test_plan.rst > index 3ab9be3..76b24bf 100644 > --- a/test_plans/cmdline_test_plan.rst > +++ b/test_plans/cmdline_test_plan.rst > @@ -76,34 +76,34 @@ Test Case: cmdline sample commands test > > Add a test object with an IP address associated to it:: > > - example>add objtest 192.168.0.1 > - Object objtest added, ip=192.168.0.1 > + example>add object 192.168.0.1 > + Object object added, ip=192.168.0.1 > > Verify the object existance:: > > - example>add objtest 192.168.0.1 > - Object objtest already exist > + example>add object 192.168.0.1 > + Object object already exist > > Show the object result by ``show`` command:: > > - example>show objtest > - Object objtest, ip=192.168.0.1 > + example>show object > + Object object, ip=192.168.0.1 > > Verify the output matchs the confiuration. > > Delete the object in cmdline and show the result again:: > > - example>del objtest > - Object objtest removed, ip=192.168.0.1 > + example>del object > + Object object removed, ip=192.168.0.1 > > Double delete the object to verify the correctness:: > > - example>del objtest > + example>del object > Bad arguments > > Verify no such object exist now.:: > > - example>show objtest > + example>show object > Bad arguments > > Verify the hidden command ? and help command::