| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # suppressions.py | 6 # suppressions.py |
| 7 | 7 |
| 8 """Post-process Valgrind suppression matcher. | 8 """Post-process Valgrind suppression matcher. |
| 9 | 9 |
| 10 Suppressions are defined as follows: | 10 Suppressions are defined as follows: |
| 11 | 11 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 TestStack(test_stack1, positive_memcheck_suppressions, | 274 TestStack(test_stack1, positive_memcheck_suppressions, |
| 275 negative_memcheck_suppressions) | 275 negative_memcheck_suppressions) |
| 276 TestStack(test_stack2, positive_heapcheck_suppressions, | 276 TestStack(test_stack2, positive_heapcheck_suppressions, |
| 277 negative_heapcheck_suppressions) | 277 negative_heapcheck_suppressions) |
| 278 TestStack(test_stack3, positive_tsan_suppressions, | 278 TestStack(test_stack3, positive_tsan_suppressions, |
| 279 negative_tsan_suppressions) | 279 negative_tsan_suppressions) |
| 280 | 280 |
| 281 if __name__ == '__main__': | 281 if __name__ == '__main__': |
| 282 SelfTest() | 282 SelfTest() |
| 283 print 'PASS' | 283 print 'PASS' |
| OLD | NEW |