Changeset: f43bb97ca39b for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/f43bb97ca39b Modified Files: testing/Mtest.py.in Branch: Aug2024 Log Message:
Fix regex to find number of bats still in use at end of testing. diffs (12 lines): diff --git a/testing/Mtest.py.in b/testing/Mtest.py.in --- a/testing/Mtest.py.in +++ b/testing/Mtest.py.in @@ -69,7 +69,7 @@ geos_version = '@GEOS_VERSION@'.split('. # free bats, used bats, total bats fbre = re.compile(r' (?P<bats>\d+) free bats') -ubre = re.compile(r'^(?P<bats>\d+) (persistent|transient) bats') +ubre = re.compile(r' (?P<bats>\d+) in use') tbre = re.compile(r'^(?P<bats>\d+) bats total') # default is no color (these three functions may get redefined) _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org