From: Adeel Kazmi Date: Fri, 14 Feb 2020 16:13:41 +0000 (+0000) Subject: Merge "Add support of writing DALi cache file for Android." into devel/master X-Git-Tag: dali_1.9.0~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cba512cfe082ff2d8d46b9ee2f142add17744b73;hp=d8121b9835bf88413058b806942d2e9aacd92703;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Merge "Add support of writing DALi cache file for Android." into devel/master --- 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; } } diff --git a/dali/public-api/dali-adaptor-version.cpp b/dali/public-api/dali-adaptor-version.cpp index 7a7c44e..ac3ba67 100644 --- a/dali/public-api/dali-adaptor-version.cpp +++ b/dali/public-api/dali-adaptor-version.cpp @@ -27,8 +27,8 @@ namespace Dali { const unsigned int ADAPTOR_MAJOR_VERSION = 1; -const unsigned int ADAPTOR_MINOR_VERSION = 4; -const unsigned int ADAPTOR_MICRO_VERSION = 57; +const unsigned int ADAPTOR_MINOR_VERSION = 5; +const unsigned int ADAPTOR_MICRO_VERSION = 0; const char * const ADAPTOR_BUILD_DATE = __DATE__ " " __TIME__; #ifdef DEBUG_ENABLED diff --git a/packaging/dali-adaptor.spec b/packaging/dali-adaptor.spec index 5610986..e8acd9d 100644 --- a/packaging/dali-adaptor.spec +++ b/packaging/dali-adaptor.spec @@ -17,7 +17,7 @@ Name: dali-adaptor Summary: The DALi Tizen Adaptor -Version: 1.4.57 +Version: 1.5.0 Release: 1 Group: System/Libraries License: Apache-2.0 and BSD-3-Clause and MIT