aboutsummaryrefslogtreecommitdiff
path: root/llvm_tools/auto_llvm_bisection.py
diff options
context:
space:
mode:
Diffstat (limited to 'llvm_tools/auto_llvm_bisection.py')
-rwxr-xr-xllvm_tools/auto_llvm_bisection.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm_tools/auto_llvm_bisection.py b/llvm_tools/auto_llvm_bisection.py
index dd29cf4f..cd3d70b6 100755
--- a/llvm_tools/auto_llvm_bisection.py
+++ b/llvm_tools/auto_llvm_bisection.py
@@ -14,10 +14,10 @@ import sys
import time
import traceback
-import chroot
+from assert_not_in_chroot import VerifyOutsideChroot
+from update_all_tryjobs_with_auto import GetPathToUpdateAllTryjobsWithAutoScript
from llvm_bisection import BisectionExitStatus
import llvm_bisection
-from update_all_tryjobs_with_auto import GetPathToUpdateAllTryjobsWithAutoScript
# Used to re-try for 'llvm_bisection.py' to attempt to launch more tryjobs.
BISECTION_RETRY_TIME_SECS = 10 * 60
@@ -46,7 +46,7 @@ def main():
AssertionError: The script was run inside the chroot.
"""
- chroot.VerifyOutsideChroot()
+ VerifyOutsideChroot()
args_output = llvm_bisection.GetCommandLineArgs()