From: "Liu, Yong" <yong.liu@intel.com>
To: "Xu, HuilongX" <huilongx.xu@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Subject: Re: [dts] [PATCH V1 5/5] add check case function in run case module
Date: Fri, 7 Aug 2015 06:52:40 +0000 [thread overview]
Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E10EB68E7@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <1438927390-855-6-git-send-email-huilongx.xu@intel.com>
One question about skip_case_mode.case_skip.
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of huilong,xu
> Sent: Friday, August 07, 2015 2:03 PM
> To: dts@dpdk.org
> Subject: [dts] [PATCH V1 5/5] add check case function in run case module
>
> From: huilong xu <huilongx.xu@intel.com>
>
>
> Signed-off-by: huilong xu <huilongx.xu@intel.com>
> ---
> framework/dts.py | 21 +++++++++++++++------
> 1 files changed, 15 insertions(+), 6 deletions(-)
>
> diff --git a/framework/dts.py b/framework/dts.py
> index e9513c6..cb8f26e 100644
> --- a/framework/dts.py
> +++ b/framework/dts.py
> @@ -57,7 +57,7 @@ from logger import getLogger
> import logger
> import debugger
> from virt_scene import VirtScene
> -
> +from checkCase import *
> import sys
> reload(sys)
> sys.setdefaultencoding('UTF8')
> @@ -291,6 +291,8 @@ def dts_run_target(crbInst, targets, test_suites, nic,
> scenario):
> """
> Run each target in execution targets.
> """
> + global skip_case_mode
> + skip_case_mode = check_case_skip(dut)
> if scenario != '':
> scene = VirtScene(dut, tester, scenario)
> else:
> @@ -299,7 +301,7 @@ def dts_run_target(crbInst, targets, test_suites, nic,
> scenario):
> if scene:
> scene.load_config()
> scene.create_scene()
> -
> +
> for target in targets:
> log_handler.info("\nTARGET " + target)
> result.target = target
> @@ -402,11 +404,12 @@ def run_all(config_file, pkgName, git, patch,
> skip_setup,
> global Package
> global Patches
> global scenario
> -
> + global skip_case_mode
> # save global variable
> Package = pkgName
> Patches = patch
> -
> + check_case = parse_file()
> + check_case.set_filter_case()
> # prepare the output folder
> if output_dir == '':
> output_dir = FOLDERS['Output']
> @@ -459,7 +462,6 @@ def run_all(config_file, pkgName, git, patch,
> skip_setup,
>
> # verify if the delimiter is good if the lists are vertical
> dutIP, targets, test_suites, nics, scenario =
> dts_parse_config(section)
> -
> log_handler.info("\nDUT " + dutIP)
>
> # look up in crbs - to find the matching IP
> @@ -479,6 +481,7 @@ def run_all(config_file, pkgName, git, patch,
> skip_setup,
> # init dut, tester crb
> dts_crbs_init(crbInst, skip_setup, read_cache, project, base_dir,
> nics, virttype)
>
> + skip_case_mode = check_case_skip(dut)
> # Run DUT prerequisites
> if dts_run_prerequisties(pkgName, patch) is False:
> dts_crbs_exit()
> @@ -576,6 +579,7 @@ def execute_all_test_cases(test_suite):
> """
> if functional_only:
> for test_case in get_functional_test_cases(test_suite):
> + skip_case_mode.case_skip(test_case)
Why call this function here? In function execute_test_case also check whether skip test case.
> execute_test_case(test_suite, test_case)
> if performance_only:
> for test_case in get_performance_test_cases(test_suite):
> @@ -591,8 +595,13 @@ def execute_test_case(test_suite, test_case):
> global debug_case
> global module
> result.test_case = test_case.__name__
> -
> rst.write_title("Test Case: " + test_case.__name__)
> + if skip_case_mode.case_skip(test_case.__name__[len("test_"):]):
> + log_handler.info('Test Case %s Result SKIPED:' %
> test_case.__name__)
> + rst.write_result("N/A")
> + result.test_case_skip(skip_case_mode.comments)
> + save_all_results()
> + return
> if performance_only:
> rst.write_annex_title("Annex: " + test_case.__name__)
> try:
> --
> 1.7.4.4
next prev parent reply other threads:[~2015-08-07 6:52 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-07 6:03 [dts] [PATCH V1 0/5] add check case list for skip the case, when the case can't test huilong,xu
2015-08-07 6:03 ` [dts] [PATCH V1 1/5] add check case list huilong,xu
2015-08-07 6:03 ` [dts] [PATCH V1 2/5] add N/A result in test report huilong,xu
2015-08-07 6:03 ` [dts] [PATCH V1 3/5] add case skip result when case running huilong,xu
2015-08-07 6:05 ` Liu, Yong
2015-08-07 6:29 ` Xu, HuilongX
2015-08-07 6:03 ` [dts] [PATCH V1 4/5] add checkCase module huilong,xu
2015-08-07 6:03 ` [dts] [PATCH V1 5/5] add check case function in run case module huilong,xu
2015-08-07 6:52 ` Liu, Yong [this message]
2015-08-07 6:06 ` [dts] [PATCH V1 0/5] add check case list for skip the case, when the case can't test Liu, Yong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=86228AFD5BCD8E4EBFD2B90117B5E81E10EB68E7@SHSMSX103.ccr.corp.intel.com \
--to=yong.liu@intel.com \
--cc=dts@dpdk.org \
--cc=huilongx.xu@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).