Skip to content

Commit

Permalink
Update mysql-test-run parsing regexps for latest MySQL 5.1.38 changes.
Browse files Browse the repository at this point in the history
(the variants of a test may now contain spaces).
  • Loading branch information
Kristian Nielsen committed Oct 2, 2009
1 parent 72b0abc commit 9ec7f18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildbot/process/mtrlogobserver.py
Expand Up @@ -68,8 +68,8 @@ class MtrLogObserver(LogLineObserver):
the Waterfall page. It also passes the information to methods that can be
overridden in a subclass to do further processing on the information."""

_line_re = re.compile(r"^([-._0-9a-zA-z]+)( '[a-z]+')?\s+(w[0-9]+\s+)?\[ (fail|pass) \]\s*(.*)$")
_line_re2 = re.compile(r"^[-._0-9a-zA-z]+( '[a-z]+')?\s+(w[0-9]+\s+)?\[ [-a-z]+ \]")
_line_re = re.compile(r"^([-._0-9a-zA-z]+)( '[-_ a-zA-Z]+')?\s+(w[0-9]+\s+)?\[ (fail|pass) \]\s*(.*)$")
_line_re2 = re.compile(r"^[-._0-9a-zA-z]+( '[-_ a-zA-Z]+')?\s+(w[0-9]+\s+)?\[ [-a-z]+ \]")
_line_re3 = re.compile(r"^\*\*\*Warnings generated in error logs during shutdown after running tests: (.*)")
_line_re4 = re.compile(r"^The servers were restarted [0-9]+ times$")
_line_re5 = re.compile(r"^Only\s+[0-9]+\s+of\s+[0-9]+\s+completed.$")
Expand Down

0 comments on commit 9ec7f18

Please sign in to comment.