You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
642 B
24 lines
642 B
# -*- coding: utf-8 -*-
|
|
# Copyright 2019 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
"""Failure mode constants avaiable to the patch manager."""
|
|
|
|
from __future__ import print_function
|
|
|
|
import enum
|
|
|
|
|
|
class FailureModes(enum.Enum):
|
|
"""Different modes for the patch manager when handling a failed patch."""
|
|
|
|
FAIL = 'fail'
|
|
CONTINUE = 'continue'
|
|
DISABLE_PATCHES = 'disable_patches'
|
|
BISECT_PATCHES = 'bisect_patches'
|
|
REMOVE_PATCHES = 'remove_patches'
|
|
|
|
# Only used by 'bisect_patches'.
|
|
INTERNAL_BISECTION = 'internal_bisection'
|