Revision: 2915
Author: [email protected]
Date: Thu Sep 17 05:13:08 2009
Log: Changed valgrind script to match changed output format

Review URL: http://codereview.chromium.org/214006

http://code.google.com/p/v8/source/detail?r=2915

Modified:
  /branches/bleeding_edge/tools/run-valgrind.py

=======================================
--- /branches/bleeding_edge/tools/run-valgrind.py       Tue May 12 07:05:37 2009
+++ /branches/bleeding_edge/tools/run-valgrind.py       Thu Sep 17 05:13:08 2009
@@ -58,7 +58,7 @@
  # have any definitely, indirectly, and possibly lost bytes.
  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.")
+LEAK_OKAY_MATCHER = re.compile(r"lost: 0 bytes in 0 blocks")
  leaks = []
  for line in errors:
    if LEAK_LINE_MATCHER.search(line):

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to