diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-03-07 16:23:37 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-08 13:48:31 +0000 |
commit | e14df7d86c641a42dcea5fa0eedfa16aa49fcb92 (patch) | |
tree | a5dce2a1be456bea14a66774ca98e75d33b2e160 /testing/tools | |
parent | f7fccbd0da7ac700e1342e18b2bd1fa82438f3fc (diff) | |
download | pdfium-e14df7d86c641a42dcea5fa0eedfa16aa49fcb92.tar.xz |
Re-enable tests now that leak is fixedchromium/3036
The fixes to RTFBreak to convert to a vector have fixed the memory
leak in these test files. Re-enable for asan and remove the asan hack
from the suppressor.
Change-Id: Id229d61101fdd2538b9bbc38b9364d694623da40
Reviewed-on: https://pdfium-review.googlesource.com/2937
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Nicolás Peña <npm@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'testing/tools')
-rwxr-xr-x | testing/tools/suppressor.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/testing/tools/suppressor.py b/testing/tools/suppressor.py index 86d2668adb..3b2872df95 100755 --- a/testing/tools/suppressor.py +++ b/testing/tools/suppressor.py @@ -12,7 +12,6 @@ class Suppressor: feature_vector = feature_string.strip().split(",") self.has_v8 = "V8" in feature_vector self.has_xfa = "XFA" in feature_vector - self.is_asan = "ASAN" in feature_vector v8_option = "v8" if self.has_v8 else "nov8" xfa_option = "xfa" if self.has_xfa else "noxfa" @@ -33,8 +32,6 @@ class Suppressor: os_column = item[1].split(","); js_column = item[2].split(","); xfa_column = item[3].split(","); - if self.is_asan and 'asan' in os_column: - return True return (('*' in os_column or os in os_column) and ('*' in js_column or js in js_column) and ('*' in xfa_column or xfa in xfa_column)) |