test suite reviews and discussions
 help / color / mirror / Atom feed
From: Rami Rosen <ramirose@gmail.com>
To: dts@dpdk.org
Cc: lijuan.tu@intel.com, Rami Rosen <ramirose@gmail.com>
Subject: [dts] [PATCH] framework/test_case: fix a typo
Date: Sun, 25 Nov 2018 18:49:35 +0200	[thread overview]
Message-ID: <20181125164935.14084-1-ramirose@gmail.com> (raw)

This patch fixes a typo in framework/test_case.py.

Signed-off-by: Rami Rosen <ramirose@gmail.com>
---
 framework/test_case.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/framework/test_case.py b/framework/test_case.py
index d78dcf9..a817607 100644
--- a/framework/test_case.py
+++ b/framework/test_case.py
@@ -279,13 +279,13 @@ class TestCase(object):
         case_result = True
         if self._check_inst is not None:
             if self._check_inst.case_skip(case_name[len("test_"):]):
-                self.logger.info('Test Case %s Result SKIPED:' % case_name)
+                self.logger.info('Test Case %s Result SKIPPED:' % case_name)
                 self._rst_obj.write_result("N/A")
                 self._suite_result.test_case_skip(self._check_inst.comments)
                 return case_result
 
             if not self._check_inst.case_support(case_name[len("test_"):]):
-                self.logger.info('Test Case %s Result SKIPED:' % case_name)
+                self.logger.info('Test Case %s Result SKIPPED:' % case_name)
                 self._rst_obj.write_result("N/A")
                 self._suite_result.test_case_skip(self._check_inst.comments)
                 return case_result
@@ -317,7 +317,7 @@ class TestCase(object):
             self.logger.error('Test Case %s Result FAILED: ' % (case_name) + str(v))
         except KeyboardInterrupt:
             self._suite_result.test_case_blocked("Skipped")
-            self.logger.error('Test Case %s SKIPED: ' % (case_name))
+            self.logger.error('Test Case %s SKIPPED: ' % (case_name))
             self.tear_down()
             raise KeyboardInterrupt("Stop DTS")
         except TimeoutException as e:
-- 
2.17.1

             reply	other threads:[~2018-11-25 16:49 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-25 16:49 Rami Rosen [this message]
2018-11-28  3:11 ` Tu, Lijuan
2019-01-12 10:17 Rami Rosen
2019-01-15  2:36 ` Tu, Lijuan

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=20181125164935.14084-1-ramirose@gmail.com \
    --to=ramirose@gmail.com \
    --cc=dts@dpdk.org \
    --cc=lijuan.tu@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).