From 0f33b1cc3c2c8ee389e5a6912208f918f2b7a40d Mon Sep 17 00:00:00 2001 From: Jonathan Metzman Date: Thu, 25 Jan 2024 22:16:54 -0500 Subject: [PATCH] Make progression a non-utask --- src/clusterfuzz/_internal/bot/tasks/task_types.py | 2 +- .../_internal/tests/core/bot/tasks/task_types_test.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/clusterfuzz/_internal/bot/tasks/task_types.py b/src/clusterfuzz/_internal/bot/tasks/task_types.py index 8660290990..7be5baa4ce 100644 --- a/src/clusterfuzz/_internal/bot/tasks/task_types.py +++ b/src/clusterfuzz/_internal/bot/tasks/task_types.py @@ -176,7 +176,7 @@ def execute(self, task_argument, job_type, uworker_env): 'fuzz': UTaskLocalExecutor, 'impact': TrustedTask, 'minimize': UTaskLocalExecutor, - 'progression': UTask, + 'progression': UTaskLocalExecutor, 'regression': UTaskLocalExecutor, 'symbolize': UTaskLocalExecutor, 'unpack': TrustedTask, diff --git a/src/clusterfuzz/_internal/tests/core/bot/tasks/task_types_test.py b/src/clusterfuzz/_internal/tests/core/bot/tasks/task_types_test.py index 40c14209c1..a07dd2b403 100644 --- a/src/clusterfuzz/_internal/tests/core/bot/tasks/task_types_test.py +++ b/src/clusterfuzz/_internal/tests/core/bot/tasks/task_types_test.py @@ -37,6 +37,7 @@ def test_mac(self): data_types.Job(name=job_name, platform='MAC').put() self.assertFalse(task_types.is_remote_utask('variant', job_name)) + @unittest.skip('No remote utasks') def test_linux(self): job_name = 'libfuzzer_linux_asan'