Skip to content

Commit

Permalink
Make progression a non-utask
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman committed Jan 26, 2024
1 parent 5fdf666 commit 0f33b1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/clusterfuzz/_internal/bot/tasks/task_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down

0 comments on commit 0f33b1c

Please sign in to comment.