Index: tools/valgrind/test_suppressions.py |
=================================================================== |
--- tools/valgrind/test_suppressions.py (revision 245622) |
+++ tools/valgrind/test_suppressions.py (working copy) |
@@ -128,10 +128,6 @@ |
cur_supp += supp['win_suppressions'] |
elif all([re.search("Linux%20", url) for url in all_reports[r]]): |
cur_supp += supp['linux_suppressions'] |
- # Separate from OS matches as we want to match "Linux%20Heapcheck" twice: |
- if all([re.search("%20Heapcheck", url) |
- for url in all_reports[r]]): |
- cur_supp += supp['heapcheck_suppressions'] |
if all(["DrMemory" in url for url in all_reports[r]]): |
cur_supp += supp['drmem_suppressions'] |
if all(["DrMemory%20full" in url for url in all_reports[r]]): |