| OLD | NEW |
| 1 ################################################################################ | 1 ################################################################################ |
| 2 # LeakSanitizer Suppressions file. | 2 # LeakSanitizer Suppressions file. |
| 3 # If a CL introduces a new leak that isn't the fault of the CL itself (e.g. a | 3 # If a CL introduces a new leak that isn't the fault of the CL itself (e.g. a |
| 4 # new testcase), please add a suppression to this file so that it can be | 4 # new testcase), please add a suppression to this file so that it can be |
| 5 # addressed in a future CL. | 5 # addressed in a future CL. |
| 6 # | 6 # |
| 7 # For this file to take effect, | 7 # For this file to take effect, |
| 8 # LSAN_OPTIONS='suppressions=/path/to/lsan_suppressions.txt' must be in the | 8 # LSAN_OPTIONS='suppressions=/path/to/lsan_suppressions.txt' must be in the |
| 9 # environment. | 9 # environment. |
| 10 # See https://www.chromium.org/developers/testing/leaksanitizer for syntax. | 10 # See https://www.chromium.org/developers/testing/leaksanitizer for syntax. |
| 11 | 11 |
| 12 ################################################################################ | 12 ################################################################################ |
| 13 # CJS_Object/CJS_EmbedObj wrapped by v8::Object currently leak. See bug 260. | |
| 14 # Obvious leaks: | |
| 15 leak:*FXJS_NewFxDynamicObj* | |
| 16 | |
| 17 # CJS_Field CFX_WideString::StringData leaks | |
| 18 leak:*CJS_Document*getField_static* | |
| 19 leak:*CJS_EventHandler*OnField* | |
| OLD | NEW |