From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id BAD001B169 for ; Wed, 10 Jan 2018 09:27:08 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Jan 2018 00:27:07 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,339,1511856000"; d="scan'208";a="165596325" Received: from dpdk-test38.sh.intel.com ([10.67.119.87]) by orsmga004.jf.intel.com with ESMTP; 10 Jan 2018 00:27:06 -0800 From: Marvin Liu To: dts@dpdk.org Cc: Marvin Liu Date: Tue, 9 Jan 2018 20:20:15 -0500 Message-Id: <1515547215-85164-1-git-send-email-yong.liu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH v1] conf/suite_sample: update suite configuration format 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, 10 Jan 2018 08:27:09 -0000 Signed-off-by: Marvin Liu diff --git a/conf/suite_sample.cfg b/conf/suite_sample.cfg index 434a31e..2467213 100644 --- a/conf/suite_sample.cfg +++ b/conf/suite_sample.cfg @@ -1,9 +1,8 @@ # sample for suite configuration [suite] -int_value=value_int:10 -hex_value=value_hex:ff +int_value=int(10) +hex_value=int("0xff", 16) [case1] -string=testpmd -command=help -packet_sizes=list_int:64,128,256 -protocals=list_str:TCP,UDP,SCTP +string="testpmd" +packet_sizes=[64, 128, 256] +protocals=["TCP", "UDP", "SCTP"] -- 1.9.3