lift main-thread limit on iOS bots

I noticed this today while working on something else.
Looks like we added --threads 0 hoping it'd help something
on iOS a long time ago, and we decided it had no effect,
but didn't revert the change.

Bug: skia:6748
Change-Id: I4fb6722ae79ca21d1f7ee96bcb31b8ffb5319143
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/202010
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Stephan Altmueller <stephana@google.com>
This commit is contained in:
Mike Klein 2019-03-18 15:39:12 -05:00 committed by Skia Commit-Bot
parent ef40e33110
commit 0cb3175c07
2 changed files with 0 additions and 6 deletions

View File

@ -660,8 +660,6 @@
"--dont_write",
"pdf",
"--randomProcessorTest",
"--threads",
"0",
"--nocpu",
"--config",
"gles",

View File

@ -87,10 +87,6 @@ def dm_flags(api, bot):
if 'Test' in bot and 'DISCARDABLE' in bot:
thread_limit = MAIN_THREAD_ONLY
# See if staying on the main thread helps skia:6748.
if 'Test-iOS' in bot:
thread_limit = MAIN_THREAD_ONLY
if thread_limit is not None:
args.extend(['--threads', str(thread_limit)])