From mboxrd@z Thu Jan 1 00:00:00 1970 From: George Dunlap Subject: Re: [PATCH v10 0/5] gcov: Coverage support Date: Fri, 22 Feb 2013 14:20:49 +0000 Message-ID: <51277EC1.7020707@eu.citrix.com> References: <1361463225-21750-1-git-send-email-frediano.ziglio@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1361463225-21750-1-git-send-email-frediano.ziglio@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Frediano Ziglio Cc: Konrad Rzeszutek Wilk , Ian Campbell , Jan Beulich , "xen-devel@lists.xen.org" List-Id: xen-devel@lists.xenproject.org Whose ACKs do you need for this to be checked in? -George On 21/02/13 16:13, Frediano Ziglio wrote: > Updated set of patches for coverage. > > Changes: > - remove small outdated note on commit text > - add signature where missing > - rebased > > Frediano Ziglio (5): > gcov: Call constructors during initialization > gcov: Adding support for coverage information > gcov: Implement code to read coverage informations > gcov: Add small utility to deal with test coverage information from > Xen > gcov: Add documentation for coverage > > .gitignore | 3 + > .hgignore | 3 + > Config.mk | 3 + > docs/misc/coverage.markdown | 39 ++++++++ > tools/misc/Makefile | 8 +- > tools/misc/xencov.c | 152 +++++++++++++++++++++++++++++ > xen/Rules.mk | 2 + > xen/arch/arm/setup.c | 2 + > xen/arch/arm/xen.lds.S | 7 ++ > xen/arch/x86/setup.c | 2 + > xen/arch/x86/xen.lds.S | 7 ++ > xen/common/Makefile | 2 + > xen/common/gcov/Makefile | 2 + > xen/common/gcov/gcov.c | 225 +++++++++++++++++++++++++++++++++++++++++++ > xen/common/lib.c | 14 +++ > xen/common/sysctl.c | 6 ++ > xen/include/public/gcov.h | 115 ++++++++++++++++++++++ > xen/include/public/sysctl.h | 38 ++++++++ > xen/include/xen/gcov.h | 93 ++++++++++++++++++ > xen/include/xen/lib.h | 2 + > 20 files changed, 723 insertions(+), 2 deletions(-) > create mode 100644 docs/misc/coverage.markdown > create mode 100644 tools/misc/xencov.c > create mode 100644 xen/common/gcov/Makefile > create mode 100644 xen/common/gcov/gcov.c > create mode 100644 xen/include/public/gcov.h > create mode 100644 xen/include/xen/gcov.h >