From d2eafc57355f88e1143e503ffb959f5c36d79347 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sun, 10 Jun 2007 18:21:18 +0000 Subject: [PATCH] Adapting the buildbot plugin to the diffing changes in ietf/tests.py - Legacy-Id: 295 --- test/buildbot/master/ietfdb/buildbot_plugins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/buildbot/master/ietfdb/buildbot_plugins.py b/test/buildbot/master/ietfdb/buildbot_plugins.py index 839dc8d08..bea46cabd 100644 --- a/test/buildbot/master/ietfdb/buildbot_plugins.py +++ b/test/buildbot/master/ietfdb/buildbot_plugins.py @@ -45,11 +45,11 @@ class DjangoTest(ShellCommand): m = "skipped" typelist["skipped"].add(m) count(m) - if re.search("^Diff: .*", line): + if re.search("^Diff: +.*", line): m = "diff_%s" % line.split()[1] typelist["diffs"].add(m) count(m) - if re.search("^OK \d+ ", line): + if re.search("^OK +.* ", line): m = "pass_%s" % line.split()[1] typelist["pass"].add(m) count(m)