aboutsummaryrefslogtreecommitdiff
path: root/llvm_tools/failure_modes.py
diff options
context:
space:
mode:
authorSadaf Ebrahimi <sadafebrahimi@google.com>2022-11-11 23:35:38 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-11-11 23:35:38 +0000
commit40214b48188358a80b7478bfff21d4814dd9177c (patch)
tree77dc031614745bb406dbd90cea9a082a1b5cdd54 /llvm_tools/failure_modes.py
parenta51582ad9cb50ec284f4718765bd5d31fa0069d4 (diff)
parent584b8e46d146a2bcfeffd64448a2d8e92904168d (diff)
downloadtoolchain-utils-android14-qpr1-release.tar.gz
Original change: https://android-review.googlesource.com/c/platform/external/toolchain-utils/+/2292563 Change-Id: Ida212764c332af8ba8ab8aaa62a7d2a007e3314e Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'llvm_tools/failure_modes.py')
-rw-r--r--llvm_tools/failure_modes.py19
1 files changed, 9 insertions, 10 deletions
diff --git a/llvm_tools/failure_modes.py b/llvm_tools/failure_modes.py
index 1e05dfcf..fc4e1fc2 100644
--- a/llvm_tools/failure_modes.py
+++ b/llvm_tools/failure_modes.py
@@ -1,23 +1,22 @@
# -*- coding: utf-8 -*-
-# Copyright 2019 The Chromium OS Authors. All rights reserved.
+# 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."""
-from __future__ import print_function
import enum
class FailureModes(enum.Enum):
- """Different modes for the patch manager when handling a failed patch."""
+ """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'
+ 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'
+ # Only used by 'bisect_patches'.
+ INTERNAL_BISECTION = "internal_bisection"