From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 6F1ED23A for ; Tue, 21 Nov 2017 06:28:14 +0100 (CET) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Nov 2017 21:28:12 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,431,1505804400"; d="scan'208";a="178298295" Received: from dpdk-test32.sh.intel.com (HELO [10.67.118.217]) ([10.67.118.217]) by fmsmga005.fm.intel.com with ESMTP; 20 Nov 2017 21:28:12 -0800 Message-ID: <5A142850.7000409@intel.com> Date: Tue, 21 Nov 2017 21:21:20 +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: Xueqin Lin , dts@dpdk.org References: <1511219198-10009-1-git-send-email-xueqin.lin@intel.com> In-Reply-To: <1511219198-10009-1-git-send-email-xueqin.lin@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dts] [PATCH v4] add ddp gtp test suite 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: Tue, 21 Nov 2017 05:28:14 -0000 Thanks Xueqin. Applied with small change in your patch. Class name is modified to TestDdpGtp for unified format. Regards, Marvin On 11/21/2017 07:06 AM, Xueqin Lin wrote: > --- > tests/TestSuite_ddp_gtp.py | 386 +++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 386 insertions(+) > create mode 100644 tests/TestSuite_ddp_gtp.py > > diff --git a/tests/TestSuite_ddp_gtp.py b/tests/TestSuite_ddp_gtp.py > new file mode 100644 > index 0000000..accf149 > --- /dev/null > +++ b/tests/TestSuite_ddp_gtp.py > @@ -0,0 +1,386 @@ > +# > + > +import time > +import re > +import sys > +import utils > +from qemu_kvm import QEMUKvm > +from test_case import TestCase > +from pmd_output import PmdOutput > +from settings import get_nic_name > +import random > + > +VM_CORES_MASK = 'all' > + > + > +class TestDDP_gtp(TestCase):