diff options
author | Mike Klein <mtklein@chromium.org> | 2018-07-25 09:53:18 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-07-25 14:16:56 +0000 |
commit | 396661825f454a652ef3db41ed5bfa7c5174153d (patch) | |
tree | 45f9ad8ca81ea423ea6fa5e375691e60e56b454d /infra/bots | |
parent | fb98a9204d5f67062bd4d579c7e2870fd1e639fa (diff) |
temporarily disable t8888 config on *SAN bots
This is mainly to debug TSAN issues.
I'm not exactly sure why we run this config on ASAN and MSAN bots.
This CL will disable them along with TSAN, and depending on how
much time that saves on the bots, I might only turn TSAN back on
in the end.
Change-Id: Id4d92f27a917b4e14b96c25e97e8be70ca2004f5
Reviewed-on: https://skia-review.googlesource.com/143302
Commit-Queue: Mike Klein <mtklein@chromium.org>
Commit-Queue: Ben Wagner <benjaminwagner@google.com>
Auto-Submit: Mike Klein <mtklein@chromium.org>
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'infra/bots')
4 files changed, 3 insertions, 5 deletions
diff --git a/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN.json b/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN.json index a3a61d2863..a951bb69d1 100644 --- a/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN.json +++ b/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN.json @@ -188,7 +188,6 @@ "esrgb", "narrow", "enarrow", - "t8888", "serialize-8888", "tiles_rt-8888", "pic-8888", diff --git a/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json b/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json index d59a4eed9e..ea5def4665 100644 --- a/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json +++ b/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json @@ -187,7 +187,6 @@ "esrgb", "narrow", "enarrow", - "t8888", "serialize-8888", "tiles_rt-8888", "pic-8888", diff --git a/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN.json b/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN.json index ccd7ffee74..f4ffd13f7e 100644 --- a/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN.json +++ b/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN.json @@ -188,7 +188,6 @@ "esrgb", "narrow", "enarrow", - "t8888", "serialize-8888", "tiles_rt-8888", "pic-8888", diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py index 70e7639565..f223553321 100644 --- a/infra/bots/recipes/test.py +++ b/infra/bots/recipes/test.py @@ -126,8 +126,9 @@ def dm_flags(api, bot): configs.extend(['narrow']) configs.extend(['enarrow']) - if 'SAN' in bot: - configs.extend(['t8888']) + # Temporarily disabled while debugging. + #if 'SAN' in bot: + # configs.extend(['t8888']) configs.extend(mode + '-8888' for mode in ['serialize', 'tiles_rt', 'pic']) |