test suite reviews and discussions
 help / color / mirror / Atom feed
From: "xu,huilong" <huilongx.xu@intel.com>
To: dts@dpdk.org
Cc: "xu,huilong" <huilongx.xu@intel.com>
Subject: [dts] [PATCH V1] fix test failed when master time less then slave time
Date: Tue,  5 Sep 2017 10:04:34 +0800	[thread overview]
Message-ID: <1504577074-3152-1-git-send-email-huilongx.xu@intel.com> (raw)

update regular expression for get time difference when master time less then slave time

Signed-off-by: xu,huilong <huilongx.xu@intel.com>
---
 tests/TestSuite_ptpclient.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/TestSuite_ptpclient.py b/tests/TestSuite_ptpclient.py
index f68c81b..2f5e004 100644
--- a/tests/TestSuite_ptpclient.py
+++ b/tests/TestSuite_ptpclient.py
@@ -107,8 +107,8 @@ class TestPtpClient(TestCase):
         self.kill_ptpclient()
 
         self.verify("T1" and "T2" and "T3" and "T4" in out, "T1,T2,T3,T4 clock error")
-        utils.regexp(out, r'Delta between master and slave clocks\:(\d+)ns')
-        pat = re.compile(r'Delta between master and slave clocks\:(\d+)ns')
+        utils.regexp(out, r'Delta between master and slave clocks\:(-?\d+)ns')
+        pat = re.compile(r'Delta between master and slave clocks\:(-?\d+)ns')
         Delta_list = pat.findall(out)
         Delta = map(int, Delta_list) 
         Delta_ns = self.average(Delta)
@@ -135,8 +135,8 @@ class TestPtpClient(TestCase):
         self.kill_ptpclient()
 
         self.verify("T1" and "T2" and "T3" and "T4" in out, "T1,T2,T3,T4 clock error")
-        utils.regexp(out, r'Delta between master and slave clocks\:(\d+)ns')
-        pat = re.compile(r'Delta between master and slave clocks\:(\d+)ns')
+        utils.regexp(out, r'Delta between master and slave clocks\:(-?\d+)ns')
+        pat = re.compile(r'Delta between master and slave clocks\:(-?\d+)ns')
         Delta_list = pat.findall(out)
         Delta = map(int, Delta_list)
         Delta_ns = self.average(Delta)
-- 
1.9.3

             reply	other threads:[~2017-09-05  2:03 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-05  2:04 xu,huilong [this message]
2017-09-06 12:18 ` 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=1504577074-3152-1-git-send-email-huilongx.xu@intel.com \
    --to=huilongx.xu@intel.com \
    --cc=dts@dpdk.org \
    /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).