diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dm_flags.json | 4 | ||||
-rwxr-xr-x | tools/dm_flags.py | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/tools/dm_flags.json b/tools/dm_flags.json index 8f3e7dce2a..251a952c35 100644 --- a/tools/dm_flags.json +++ b/tools/dm_flags.json @@ -1975,9 +1975,7 @@ "_", "image", "_", - ".bmp", - "--match", - "~FontMgrAndroidParser" + ".bmp" ], "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN": [ "--pre_log", diff --git a/tools/dm_flags.py b/tools/dm_flags.py index b37d0dd42a..5fd8a2b878 100755 --- a/tools/dm_flags.py +++ b/tools/dm_flags.py @@ -195,8 +195,6 @@ def get_args(bot): blacklist.extend(('_ image _ .png').split(' ')) # I8 .png color tables blacklist.extend(('_ image _ .bmp').split(' ')) # I8 .bmp color tables - match.append('~FontMgrAndroidParser') # expat currently uninstrumented. - if blacklist: args.append('--blacklist') args.extend(blacklist) |