| Index: tools/run-valgrind.py
|
| ===================================================================
|
| --- tools/run-valgrind.py (revision 1910)
|
| +++ tools/run-valgrind.py (working copy)
|
| @@ -56,7 +56,7 @@
|
|
|
| # Look through the leak details and make sure that we don't
|
| # have any definitely, indirectly, and possibly lost bytes.
|
| -LEAK_RE = r"(?:definitely|indirectly|possibly) lost: \d+ bytes in \d+ blocks."
|
| +LEAK_RE = r"(?:definitely|indirectly|possibly) lost: "
|
| LEAK_LINE_MATCHER = re.compile(LEAK_RE)
|
| LEAK_OKAY_MATCHER = re.compile(r"lost: 0 bytes in 0 blocks.")
|
| leaks = []
|
|
|