From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 090835A79 for ; Fri, 7 Aug 2015 08:03:23 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP; 06 Aug 2015 23:03:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,628,1432623600"; d="scan'208";a="620983142" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga003.jf.intel.com with ESMTP; 06 Aug 2015 23:03:23 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id t7763LjH008321; Fri, 7 Aug 2015 14:03:21 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id t7763IMV000910; Fri, 7 Aug 2015 14:03:20 +0800 Received: (from huilongx@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id t7763IsS000906; Fri, 7 Aug 2015 14:03:18 +0800 From: "huilong,xu" To: dts@dpdk.org Date: Fri, 7 Aug 2015 14:03:08 +0800 Message-Id: <1438927390-855-4-git-send-email-huilongx.xu@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1438927390-855-1-git-send-email-huilongx.xu@intel.com> References: <1438927390-855-1-git-send-email-huilongx.xu@intel.com> Subject: [dts] [PATCH V1 3/5] add case skip result when case running 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: Fri, 07 Aug 2015 06:03:24 -0000 From: huilong xu Signed-off-by: huilong xu --- framework/test_result.py | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/framework/test_result.py b/framework/test_result.py index 79faee1..2e62d9e 100644 --- a/framework/test_result.py +++ b/framework/test_result.py @@ -157,6 +157,11 @@ class Result(object): """ self.__set_test_case_result(result='PASSED', message='') + def test_case_skip(self,message): + """ + set last test case add as N/A + """ + self.__set_test_case_result(result='N/A', message=message) def test_case_failed(self, message): """ Set last test case added as FAILED -- 1.7.4.4