Re: [PATCH] Coverage: Add support for TSIM format

2019-02-14 Thread Joel Sherrill
On Wed, Feb 13, 2019 at 11:00 PM Vijay Kumar Banerjee < vijaykumar9...@gmail.com> wrote: > > > On Thu, Feb 14, 2019, 4:15 AM Chris Johns wrote: > >> On 8/2/19 5:39 pm, Vijay Kumar Banerjee wrote: >> > Attaching v3 of the patch. :) >> >> Pushed. >> >> Nice work and thank you for sticking with

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-13 Thread Vijay Kumar Banerjee
On Thu, Feb 14, 2019, 4:15 AM Chris Johns wrote: > On 8/2/19 5:39 pm, Vijay Kumar Banerjee wrote: > > Attaching v3 of the patch. :) > > Pushed. > > Nice work and thank you for sticking with this. It sits nicely in the > framework. > Thanks !! :) > > Thanks > Chris >

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-13 Thread Chris Johns
On 8/2/19 5:39 pm, Vijay Kumar Banerjee wrote: > Attaching v3 of the patch. :) Pushed. Nice work and thank you for sticking with this. It sits nicely in the framework. Thanks Chris ___ devel mailing list devel@rtems.org

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-07 Thread Vijay Kumar Banerjee
Attaching v3 of the patch. :) From 11267b9ebf80921cb45c0a8e1a4a1df8513c8a97 Mon Sep 17 00:00:00 2001 From: Vijay Kumar Banerjee Date: Fri, 1 Feb 2019 01:01:42 +0530 Subject: [PATCH v3] Coverage: Add support for TSIM format --- tester/rt/coverage.py | 35

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-07 Thread Vijay Kumar Banerjee
On Fri, 8 Feb 2019 at 08:34, Chris Johns wrote: > On 8/2/19 9:13 am, Vijay Kumar Banerjee wrote: > > On Fri, 8 Feb 2019 at 00:15, Chris Johns > > wrote: > > > > On 7/2/19 7:17 pm, Vijay Kumar Banerjee wrote: > > > I'm trying to do this ... > > > > > >

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-07 Thread Chris Johns
On 8/2/19 9:13 am, Vijay Kumar Banerjee wrote: > On Fri, 8 Feb 2019 at 00:15, Chris Johns > wrote: > > On 7/2/19 7:17 pm, Vijay Kumar Banerjee wrote: > > I'm trying to do this ... > > > > === > > diff --git

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-07 Thread Vijay Kumar Banerjee
On Fri, 8 Feb 2019 at 00:15, Chris Johns wrote: > On 7/2/19 7:17 pm, Vijay Kumar Banerjee wrote: > > I'm trying to do this ... > > > > === > > diff --git a/tester/rtems/testing/bsps/leon3-sis-cov.ini > > b/tester/rtems/testing/bsps/leon3-sis-cov.ini > > index d60257c..e450b60 100644 > >

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-07 Thread Chris Johns
On 7/2/19 7:17 pm, Vijay Kumar Banerjee wrote: > I'm trying to do this ... > > === > diff --git a/tester/rtems/testing/bsps/leon3-sis-cov.ini > b/tester/rtems/testing/bsps/leon3-sis-cov.ini > index d60257c..e450b60 100644 > --- a/tester/rtems/testing/bsps/leon3-sis-cov.ini > +++

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-07 Thread Vijay Kumar Banerjee
I'm trying to do this ... === diff --git a/tester/rtems/testing/bsps/leon3-sis-cov.ini b/tester/rtems/testing/bsps/leon3-sis-cov.ini index d60257c..e450b60 100644 --- a/tester/rtems/testing/bsps/leon3-sis-cov.ini +++ b/tester/rtems/testing/bsps/leon3-sis-cov.ini @@ -38,4 +38,4 @@ tester

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-06 Thread Chris Johns
On 6/2/19 9:33 pm, Vijay Kumar Banerjee wrote: > > > > On Wed, 6 Feb 2019 at 14:04, Chris Johns > wrote: > > On 6/2/19 7:24 pm, Vijay Kumar Banerjee wrote: > > @@ -317,9 +324,11 @@ class covoar(object): > >              raise error.general('coverage: no

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-06 Thread Chris Johns
On 6/2/19 7:24 pm, Vijay Kumar Banerjee wrote: > @@ -317,9 +324,11 @@ class covoar(object): > raise error.general('coverage: no symbol set file: %s'% > (symbol_file)) > exe = self._find_covoar() > command = exe + ' -S ' + symbol_file + \ > - ' -O '

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-06 Thread Vijay Kumar Banerjee
> > > ... I would prefer the command be managed in the config files and > this code > > removed. Do you think this can be done? > > > > the exe and the symbol_files are generated by the script itself. I think > we have > > to call covoar from the script only. > > That is fi

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-05 Thread Chris Johns
On 6/2/19 1:41 am, Vijay Kumar Banerjee wrote: > On Tue, 5 Feb 2019 at 03:37, Chris Johns > wrote: On 1/2/19 10:47 pm, Vijay Kumar Banerjee wrote: > >          self.trace = trace > >          self.prefix = prefix > > +        self.bsp = bsp > >  >

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-05 Thread Vijay Kumar Banerjee
On Tue, 5 Feb 2019 at 03:37, Chris Johns wrote: > On 1/2/19 10:47 pm, Vijay Kumar Banerjee wrote: > > --- > > tester/rt/coverage.py | 28 - > > tester/rtems/testing/bsps/leon3-sis-cov.ini | 3 ++- > > 2 files changed, 24 insertions(+), 7 deletions(-) >

Re: [PATCH] Coverage: Add support for TSIM format

2019-02-04 Thread Chris Johns
On 1/2/19 10:47 pm, Vijay Kumar Banerjee wrote: > --- > tester/rt/coverage.py | 28 - > tester/rtems/testing/bsps/leon3-sis-cov.ini | 3 ++- > 2 files changed, 24 insertions(+), 7 deletions(-) > > diff --git a/tester/rt/coverage.py

[PATCH] Coverage: Add support for TSIM format

2019-02-01 Thread Vijay Kumar Banerjee
--- tester/rt/coverage.py | 28 - tester/rtems/testing/bsps/leon3-sis-cov.ini | 3 ++- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/tester/rt/coverage.py b/tester/rt/coverage.py index 9fc9b64..859001a 100644 --- a/tester/rt/coverage.py