diff options
author | Greg Daniel <egdaniel@google.com> | 2018-05-22 13:13:18 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-05-22 18:08:35 +0000 |
commit | e81f7b393a390801a365e9b6646cc89ba86da33a (patch) | |
tree | 6c43f62ccbee810b7e964c8bc7fd8309471f1d26 /infra | |
parent | 1724db1658c48c20c75bc39497d70cb1e227fbdb (diff) |
Add more blacklists for intel 405 vulkan perf bot.
Bug: skia:
Change-Id: I39cae17623e1b186607258cdd6929d797fcd6e15
Reviewed-on: https://skia-review.googlesource.com/129511
Reviewed-by: Greg Daniel <egdaniel@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'infra')
-rw-r--r-- | infra/bots/recipes/perf.expected/Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan.json | 2 | ||||
-rw-r--r-- | infra/bots/recipes/perf.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan.json b/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan.json index 0a9cace4bf..89fbc55b99 100644 --- a/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan.json +++ b/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan.json @@ -153,7 +153,9 @@ "--config", "vk", "--match", + "~desk_carsvg.skp_1", "~desk_tiger8svg.skp_1", + "~desk_wowwiki.skp", "~keymobi_sfgate.skp_1", "~keymobi_techcrunch_com.skp_1.1", "~keymobi_techcrunch.skp_1.1", diff --git a/infra/bots/recipes/perf.py b/infra/bots/recipes/perf.py index cc34ed67fc..a3524adecb 100644 --- a/infra/bots/recipes/perf.py +++ b/infra/bots/recipes/perf.py @@ -207,7 +207,9 @@ def nanobench_flags(api, bot): verbose = True if 'IntelHD405' in bot and api.vars.is_linux and 'Vulkan' in bot: # skia:7322 + match.append('~desk_carsvg.skp_1') match.append('~desk_tiger8svg.skp_1') + match.append('~desk_wowwiki.skp') match.append('~keymobi_sfgate.skp_1') match.append('~keymobi_techcrunch_com.skp_1.1') match.append('~keymobi_techcrunch.skp_1.1') |