X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fpatch-coverage.pl;h=c5d9083aef9a2cdf57e333a3f9a74b84405b1d5e;hp=5e5e164cd6884bba2566d9a3d8b3006db587157d;hb=bdeb351ea382b8cd49404cf197a1945c24289f79;hpb=7742c07e1fdc5d78bab7c2c9cc5d7803f04fb012 diff --git a/automated-tests/patch-coverage.pl b/automated-tests/patch-coverage.pl index 5e5e164..c5d9083 100755 --- a/automated-tests/patch-coverage.pl +++ b/automated-tests/patch-coverage.pl @@ -1,6 +1,6 @@ #!/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. @@ -266,6 +266,12 @@ sub get_coverage 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; } }