aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/cifuzz/affected_fuzz_targets.py
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-02-03 12:46:19 -0800
committerGravatar GitHub <noreply@github.com>2021-02-03 12:46:19 -0800
commit7f150fe75e2a50cde54169fd638b942b92556fe2 (patch)
tree0700e6617d8ca758732c159eeb3ec90c27d0d46d /infra/cifuzz/affected_fuzz_targets.py
parente7bd7fc5e355a4a36754002c61fb505bd23fcb91 (diff)
[cifuzz] Abstract-away OSS-Fuzz specific bits (#5088)
Abstract away OSS-Fuzz specific bits into the OSSFuzz implementation of the ClusterFuzzDeployment class. This will make it easier to implement support for other deployments of ClusterFuzz (including ClusterFuzzLite).
Diffstat (limited to 'infra/cifuzz/affected_fuzz_targets.py')
-rw-r--r--infra/cifuzz/affected_fuzz_targets.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/infra/cifuzz/affected_fuzz_targets.py b/infra/cifuzz/affected_fuzz_targets.py
index fb09eb64..f9f2242a 100644
--- a/infra/cifuzz/affected_fuzz_targets.py
+++ b/infra/cifuzz/affected_fuzz_targets.py
@@ -38,6 +38,7 @@ def remove_unaffected_fuzz_targets(project_name, out_dir, files_changed,
targets are unaffected. For example, this means that fuzz targets which don't
have coverage data on will not be deleted.
"""
+ # TODO(metzman): Make this use clusterfuzz deployment.
if not files_changed:
# Don't remove any fuzz targets if there is no difference from HEAD.
logging.info('No files changed compared to HEAD.')