diff --git a/tools/nanobench_flags.json b/tools/nanobench_flags.json index 6084ad1609..049bf543fd 100644 --- a/tools/nanobench_flags.json +++ b/tools/nanobench_flags.json @@ -49,7 +49,9 @@ "~blurroundrect", "~patch_grid", "~desk_carsvg", - "~GLInstancedArraysBench" + "~GLInstancedArraysBench", + "~GLVertexAttributesBench", + "~GLVec4ScalarBench" ], "Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind": [ "--scales", diff --git a/tools/nanobench_flags.py b/tools/nanobench_flags.py index f11ea1f0f1..86d720356d 100755 --- a/tools/nanobench_flags.py +++ b/tools/nanobench_flags.py @@ -69,6 +69,8 @@ def get_args(bot): match.append('~desk_unicodetable') if 'GalaxyS4' in bot: match.append('~GLInstancedArraysBench') # skia:4371 + # skia:4373 + match.extend(['~GLVertexAttributesBench', '~GLVec4ScalarBench']) if 'iOS' in bot: match.append('~blurroundrect')