Files
rk35xx-android14/external/toolchain-utils/llvm_tools/failure_modes.py
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

23 lines
597 B
Python

# -*- coding: utf-8 -*-
# Copyright 2019 The ChromiumOS Authors
# 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."""
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"