Skip to content

Commit d2eafc5

Browse files
committed
Adapting the buildbot plugin to the diffing changes in ietf/tests.py
- Legacy-Id: 295
1 parent 6d5afa5 commit d2eafc5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/buildbot/master/ietfdb/buildbot_plugins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ def count(m):
4545
m = "skipped"
4646
typelist["skipped"].add(m)
4747
count(m)
48-
if re.search("^Diff: .*", line):
48+
if re.search("^Diff: +.*", line):
4949
m = "diff_%s" % line.split()[1]
5050
typelist["diffs"].add(m)
5151
count(m)
52-
if re.search("^OK \d+ ", line):
52+
if re.search("^OK +.* ", line):
5353
m = "pass_%s" % line.split()[1]
5454
typelist["pass"].add(m)
5555
count(m)

0 commit comments

Comments
 (0)