diff options
author | Ben Wagner <benjaminwagner@google.com> | 2017-08-23 15:05:50 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-08-23 19:38:06 +0000 |
commit | 38db79f7ba6fdcd29c3032bf8c4e1eb6f895065a (patch) | |
tree | ac723d4e75e5ea8bcd535ca77004455b9d8accc5 /infra/bots | |
parent | 19bf2b3a645c9e4129ee72e26541c4edea708393 (diff) |
Omit flakily failing test.
Bug: skia:6992
No-Try: true
Change-Id: Ie2726fd80f0baf03bdea5148e45b909ac88340f6
Reviewed-on: https://skia-review.googlesource.com/37740
Reviewed-by: Stephan Altmueller <stephana@google.com>
Commit-Queue: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'infra/bots')
-rw-r--r-- | infra/bots/recipes/test.expected/Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release.json (renamed from infra/bots/recipes/test.expected/Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug.json) | 14 | ||||
-rw-r--r-- | infra/bots/recipes/test.py | 5 |
2 files changed, 13 insertions, 6 deletions
diff --git a/infra/bots/recipes/test.expected/Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug.json b/infra/bots/recipes/test.expected/Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release.json index 6a0a8d74ee..392dbb96c4 100644 --- a/infra/bots/recipes/test.expected/Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug.json +++ b/infra/bots/recipes/test.expected/Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release.json @@ -134,7 +134,7 @@ "[START_DIR]/tmp/uninteresting_hashes.txt" ], "env": { - "BUILDTYPE": "Debug", + "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", "SKIA_OUT": "[START_DIR]/out" @@ -205,7 +205,7 @@ }, { "cmd": [ - "[START_DIR]/out/Debug/dm", + "[START_DIR]/out/Release/dm", "--resourcePath", "[START_DIR]/skia/resources", "--skps", @@ -219,7 +219,7 @@ "gitHash", "abc123", "builder", - "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug", + "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release", "swarming_bot_id", "skia-bot-123", "swarming_task_id", @@ -232,7 +232,7 @@ "compiler", "Clang", "configuration", - "Debug", + "Release", "cpu_or_gpu", "CPU", "cpu_or_gpu_value", @@ -495,6 +495,10 @@ "gm", "_", "makecolorspace", + "serialize-8888", + "gm", + "_", + "encode-platform", "pic-8888", "gm", "_", @@ -557,7 +561,7 @@ "complexclip4_aa" ], "env": { - "BUILDTYPE": "Debug", + "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", "SKIA_OUT": "[START_DIR]/out" diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py index 233bb08e2f..69ec34afe5 100644 --- a/infra/bots/recipes/test.py +++ b/infra/bots/recipes/test.py @@ -368,6 +368,9 @@ def dm_flags(api, bot): if 'Win' in bot or 'Android' in bot: for test in ['verylargebitmap', 'verylarge_picture_image']: blacklist(['serialize-8888', 'gm', '_', test]) + if 'Mac' in bot and 'CPU' in bot and 'Release' in bot: + # skia:6992 + blacklist(['serialize-8888', 'gm', '_', 'encode-platform']) # skia:4769 for test in ['drawfilter']: @@ -831,7 +834,7 @@ TEST_BUILDERS = [ 'Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-Android', 'Test-ChromeOS-Clang-Chromebook_C100p-GPU-MaliT764-arm-Debug', 'Test-ChromeOS-Clang-Chromebook_CB5_312T-GPU-PowerVRGX6250-arm-Debug', - 'Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug', + 'Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release', 'Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-CommandBuffer', 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-ASAN', 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-MSAN', |