(patch-coverage.pl) Ignore header files that yield no coverage 38/224838/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Thu, 13 Feb 2020 09:55:58 +0000 (09:55 +0000)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Thu, 13 Feb 2020 09:55:58 +0000 (09:55 +0000)
Change-Id: I8e1fe875d300fa028bd2f6844422a4fd38f6d3ad

automated-tests/patch-coverage.pl

index 5e5e164..c5d9083 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 #
 #!/usr/bin/perl
 #
-# Copyright (c) 2016 Samsung Electronics Co., Ltd.
+# Copyright (c) 2020 Samsung Electronics Co., Ltd.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -266,6 +266,12 @@ sub get_coverage
                 if(index( $source_file, $file ) > 0 )
                 {
                     $gcovfile = $coverage_file;
                 if(index( $source_file, $file ) > 0 )
                 {
                     $gcovfile = $coverage_file;
+                    # Some header files do not produce an equivalent gcov file so we shouldn't parse them
+                    if(($source_file =~ /\.h$/) && (! -e $gcovfile))
+                    {
+                        print "Omitting Header: $source_file\n" if $debug;
+                        $gcovfile = ""
+                    }
                     last;
                 }
             }
                     last;
                 }
             }