From af6e9f6e393c6f9950984d35d744af43918f6d00 Mon Sep 17 00:00:00 2001 From: Thomas Van Lenten Date: Tue, 28 Dec 2021 15:16:19 -0500 Subject: [PATCH] Ignore the files generated from the protos in the coverage data. (#7076) The testing isn't calling all the generated apis, it is focused on ensuring all the parsing/serialization code paths are covered; so don't count these files in the stats. --- projects/swift-protobuf/project.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/swift-protobuf/project.yaml b/projects/swift-protobuf/project.yaml index 002ee8726..9f10319d1 100644 --- a/projects/swift-protobuf/project.yaml +++ b/projects/swift-protobuf/project.yaml @@ -10,4 +10,5 @@ fuzzing_engines: sanitizers: - address - thread +coverage_extra_args: -ignore-filename-regex=*.pb.swift main_repo: 'https://github.com/apple/swift-protobuf.git'