* Re: [selftest][PATCH V1 0/5] QA: Extend unit tests for event module
@ 2017-12-08 21:24 Jair Gonzalez
2018-01-07 12:08 ` Richard Purdie
0 siblings, 1 reply; 3+ messages in thread
From: Jair Gonzalez @ 2017-12-08 21:24 UTC (permalink / raw)
To: bitbake-devel
Hello,
Have you been able to review this series of patches? It's being tracked on
bug 10773.
Please let me know if you have any doubts or comments about it.
Regards,
Jair Gonzalez
> -----Original Message-----
> From: bitbake-devel-bounces@lists.openembedded.org [mailto:bitbake-devel-
> bounces@lists.openembedded.org] On Behalf Of Jair Gonzalez
> Sent: Thursday, August 17, 2017 3:41 PM
> To: bitbake-devel@lists.openembedded.org
> Subject: [bitbake-devel] [selftest][PATCH V1 0/5] QA: Extend unit tests
for event
> module
>
> Included on V1:
>
> This patch-set extends the unit test module for bitbake event
> including increased coverage for event filtering features and
> testing of public interfaces of event and helper classes. It
> also includes two small fixes for issues found during the unit
> test development.
>
> [YOCTO #10773]
>
> The following changes since commit
> 6016ec177af2406cacfeb3276dfcb8bfc3df8fce:
>
> poky.conf: Enable vulkan by default (2017-08-16 00:04:39 +0100)
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib jairglez/bbevent_extended
> http://git.yoctoproject.org/cgit.cgi/poky-
> contrib/log/?h=jairglez/bbevent_extended
>
> Jair Gonzalez (5):
> bitbake: tests: Include tests for event filtering features
> bitbake: tests: Add test for bb.event.worker_fire
> bitbake: tests: Remove empty assignments from event tests
> bitbake: tests: Initialize data attribute on BuildBase event
> bitbake: tests: Add event classes test class
>
> lib/bb/event.py | 1 +
> lib/bb/tests/event.py | 646
> +++++++++++++++++++++++++++++++++++++++++++++++++-
> 2 files changed, 634 insertions(+), 13 deletions(-)
>
> --
> 2.7.4
>
> --
> _______________________________________________
> bitbake-devel mailing list
> bitbake-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/bitbake-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [selftest][PATCH V1 0/5] QA: Extend unit tests for event module
2017-12-08 21:24 [selftest][PATCH V1 0/5] QA: Extend unit tests for event module Jair Gonzalez
@ 2018-01-07 12:08 ` Richard Purdie
0 siblings, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2018-01-07 12:08 UTC (permalink / raw)
To: Jair Gonzalez, bitbake-devel
Hi Jair,
I finally got to this. Its basically ok but I don't like the data
attribute being set to "None". I've dropped that bit and will remove
the getCfg and setCfg pieces instead as I don't think we're using them
anywhere. I have that queued in master-next.
Sorry about the delay in getting to this.
Cheers,
Richard
On Fri, 2017-12-08 at 15:24 -0600, Jair Gonzalez wrote:
> Hello,
>
> Have you been able to review this series of patches? It's being
> tracked on
> bug 10773.
>
> Please let me know if you have any doubts or comments about it.
>
> Regards,
> Jair Gonzalez
>
> >
> > -----Original Message-----
> > From: bitbake-devel-bounces@lists.openembedded.org [mailto:bitbake-
> > devel-
> > bounces@lists.openembedded.org] On Behalf Of Jair Gonzalez
> > Sent: Thursday, August 17, 2017 3:41 PM
> > To: bitbake-devel@lists.openembedded.org
> > Subject: [bitbake-devel] [selftest][PATCH V1 0/5] QA: Extend unit
> > tests
> for event
> >
> > module
> >
> > Included on V1:
> >
> > This patch-set extends the unit test module for bitbake event
> > including increased coverage for event filtering features and
> > testing of public interfaces of event and helper classes. It
> > also includes two small fixes for issues found during the unit
> > test development.
> >
> > [YOCTO #10773]
> >
> > The following changes since commit
> > 6016ec177af2406cacfeb3276dfcb8bfc3df8fce:
> >
> > poky.conf: Enable vulkan by default (2017-08-16 00:04:39 +0100)
> >
> > are available in the git repository at:
> >
> > git://git.yoctoproject.org/poky-contrib jairglez/bbevent_extended
> > http://git.yoctoproject.org/cgit.cgi/poky-
> > contrib/log/?h=jairglez/bbevent_extended
> >
> > Jair Gonzalez (5):
> > bitbake: tests: Include tests for event filtering features
> > bitbake: tests: Add test for bb.event.worker_fire
> > bitbake: tests: Remove empty assignments from event tests
> > bitbake: tests: Initialize data attribute on BuildBase event
> > bitbake: tests: Add event classes test class
> >
> > lib/bb/event.py | 1 +
> > lib/bb/tests/event.py | 646
> > +++++++++++++++++++++++++++++++++++++++++++++++++-
> > 2 files changed, 634 insertions(+), 13 deletions(-)
> >
> > --
> > 2.7.4
> >
> > --
> > _______________________________________________
> > bitbake-devel mailing list
> > bitbake-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/bitbake-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* [selftest][PATCH V1 0/5] QA: Extend unit tests for event module
@ 2017-08-17 20:40 Jair Gonzalez
0 siblings, 0 replies; 3+ messages in thread
From: Jair Gonzalez @ 2017-08-17 20:40 UTC (permalink / raw)
To: bitbake-devel
Included on V1:
This patch-set extends the unit test module for bitbake event
including increased coverage for event filtering features and
testing of public interfaces of event and helper classes. It
also includes two small fixes for issues found during the unit
test development.
[YOCTO #10773]
The following changes since commit 6016ec177af2406cacfeb3276dfcb8bfc3df8fce:
poky.conf: Enable vulkan by default (2017-08-16 00:04:39 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib jairglez/bbevent_extended
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=jairglez/bbevent_extended
Jair Gonzalez (5):
bitbake: tests: Include tests for event filtering features
bitbake: tests: Add test for bb.event.worker_fire
bitbake: tests: Remove empty assignments from event tests
bitbake: tests: Initialize data attribute on BuildBase event
bitbake: tests: Add event classes test class
lib/bb/event.py | 1 +
lib/bb/tests/event.py | 646 +++++++++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 634 insertions(+), 13 deletions(-)
--
2.7.4
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-01-07 12:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-08 21:24 [selftest][PATCH V1 0/5] QA: Extend unit tests for event module Jair Gonzalez
2018-01-07 12:08 ` Richard Purdie
-- strict thread matches above, loose matches on Subject: below --
2017-08-17 20:40 Jair Gonzalez
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.