aboutsummaryrefslogtreecommitdiff
path: root/infra/base-images/base-builder
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-01-25 08:41:34 -0800
committerGitHub <noreply@github.com>2021-01-25 08:41:34 -0800
commit0ac841a1a40c7ef9def6b65834cf823c7f298e23 (patch)
tree8d94affc84904315895c31813ad6d7179f6bee9f /infra/base-images/base-builder
parent20b7246eae02785153ada2ae3dad97a546c7f589 (diff)
downloadoss-fuzz-0ac841a1a40c7ef9def6b65834cf823c7f298e23.tar.gz
Replace terms that are uninclusive. (#5045)
Diffstat (limited to 'infra/base-images/base-builder')
-rw-r--r--infra/base-images/base-builder/bisect_clang.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/infra/base-images/base-builder/bisect_clang.py b/infra/base-images/base-builder/bisect_clang.py
index 8c530b627..2e2c0e49a 100644
--- a/infra/base-images/base-builder/bisect_clang.py
+++ b/infra/base-images/base-builder/bisect_clang.py
@@ -64,7 +64,7 @@ class GitRepo:
def test_commit(self, test_command):
"""Build LLVM at the currently checkedout commit, then run |test_command|.
If returncode is 0 run 'git bisect good' otherwise return 'git bisect bad'.
- Return None if bisect didn't terminate yet. Return the culprit commit if it
+ Return None if bisect didn't finish yet. Return the culprit commit if it
does."""
build_clang(self.repo_dir)
retcode, _, _ = execute(test_command, shell=True, expect_zero=False)
@@ -208,8 +208,7 @@ def main():
8288453f6aac05080b751b680455349e09d49825
"""
# pylint: enable=line-too-long
- # TODO(metzman): Sanity check CFLAGS for things like
- # -fsanitize=fuzzer-no-link.
+ # TODO(metzman): Check CFLAGS for things like -fsanitize=fuzzer-no-link.
# TODO(metzman): Allow test_command to be optional and for just build.sh to be
# used instead.
test_command = sys.argv[1]