test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1]framework/test_case: fix tear down fail will lost suite results
@ 2020-08-17  1:51 Xiao Qimai
  2020-08-17  3:05 ` Xiao, QimaiX
  2020-08-21  3:14 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: Xiao Qimai @ 2020-08-17  1:51 UTC (permalink / raw)
  To: dts; +Cc: Xiao Qimai

*. this patch fix if got exception in tear down method of testsuite will lost result
scilently

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 framework/test_case.py | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/framework/test_case.py b/framework/test_case.py
index 110dafb..300b6ac 100644
--- a/framework/test_case.py
+++ b/framework/test_case.py
@@ -350,7 +350,7 @@ class TestCase(object):
                 'update_expected' in self.get_suite_cfg() and \
                 self.get_suite_cfg()['update_expected'] == True:
                 self._suite_conf.update_case_config(SUITE_SECTION_NAME)
-            self.tear_down()
+            self.execute_tear_down()
             return case_result
 
     def execute_test_cases(self):
@@ -440,6 +440,16 @@ class TestCase(object):
             # destroy all vfs
             dutobj.destroy_all_sriov_vfs()
 
+    def execute_tear_down(self):
+        """
+        execute suite tear_down function
+        """
+        try:
+            self.tear_down()
+        except Exception:
+            self.logger.error('tear_down failed:\n' + traceback.format_exc())
+            self.logger.warning("tear down %s failed, might iterfere next case's result!" % self.running_case)
+
     def enable_history(self, history):
         """
         Enable history for all CRB's default session
-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V1]framework/test_case: fix tear down fail will lost suite results
  2020-08-17  1:51 [dts] [PATCH V1]framework/test_case: fix tear down fail will lost suite results Xiao Qimai
@ 2020-08-17  3:05 ` Xiao, QimaiX
  2020-08-21  3:14 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Xiao, QimaiX @ 2020-08-17  3:05 UTC (permalink / raw)
  To: dts

Tested-by: Xiao Qimai <qimaix.xiao@intel.com>

Regards,
Xiao Qimai

> -----Original Message-----
> From: Xiao, QimaiX <qimaix.xiao@intel.com>
> Sent: Monday, August 17, 2020 9:51 AM
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts][PATCH V1]framework/test_case: fix tear down fail will lost
> suite results
> 
> *. this patch fix if got exception in tear down method of testsuite will lost
> result scilently
> 
> Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
> ---
>  framework/test_case.py | 12 +++++++++++-
>  1 file changed, 11 insertions(+), 1 deletion(-)
> 
> diff --git a/framework/test_case.py b/framework/test_case.py index
> 110dafb..300b6ac 100644
> --- a/framework/test_case.py
> +++ b/framework/test_case.py
> @@ -350,7 +350,7 @@ class TestCase(object):
>                  'update_expected' in self.get_suite_cfg() and \
>                  self.get_suite_cfg()['update_expected'] == True:
>                  self._suite_conf.update_case_config(SUITE_SECTION_NAME)
> -            self.tear_down()
> +            self.execute_tear_down()
>              return case_result
> 
>      def execute_test_cases(self):
> @@ -440,6 +440,16 @@ class TestCase(object):
>              # destroy all vfs
>              dutobj.destroy_all_sriov_vfs()
> 
> +    def execute_tear_down(self):
> +        """
> +        execute suite tear_down function
> +        """
> +        try:
> +            self.tear_down()
> +        except Exception:
> +            self.logger.error('tear_down failed:\n' + traceback.format_exc())
> +            self.logger.warning("tear down %s failed, might iterfere
> + next case's result!" % self.running_case)
> +
>      def enable_history(self, history):
>          """
>          Enable history for all CRB's default session
> --
> 2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V1]framework/test_case: fix tear down fail will lost suite results
  2020-08-17  1:51 [dts] [PATCH V1]framework/test_case: fix tear down fail will lost suite results Xiao Qimai
  2020-08-17  3:05 ` Xiao, QimaiX
@ 2020-08-21  3:14 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2020-08-21  3:14 UTC (permalink / raw)
  To: Xiao, QimaiX, dts; +Cc: Xiao, QimaiX

> *. this patch fix if got exception in tear down method of testsuite will lost result
> scilently
> 
> Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
> ---
>  framework/test_case.py | 12 +++++++++++-

Applied

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-08-21  3:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-17  1:51 [dts] [PATCH V1]framework/test_case: fix tear down fail will lost suite results Xiao Qimai
2020-08-17  3:05 ` Xiao, QimaiX
2020-08-21  3:14 ` Tu, Lijuan

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).