Re: [PATCH 0/6] Add a unit-testing framework to Busybox

2014-06-30 Thread Denys Vlasenko
On Thu, Jun 26, 2014 at 3:14 PM, Bartosz Gołaszewski bartekg...@gmail.com wrote: 2014-06-26 14:12 GMT+02:00 Rich Felker dal...@libc.org: On Thu, Jun 26, 2014 at 12:35:53PM +0200, Denys Vlasenko wrote: Global data is initialized to zero at program load time. And even if you need a non-zero

Re: [PATCH 0/6] Add a unit-testing framework to Busybox

2014-06-26 Thread Bartosz Gołaszewski
2014-06-22 16:31 GMT+02:00 Denys Vlasenko vda.li...@googlemail.com: Applied all patches with some editing. Thanks a lot! Hi Denys, I see, that you removed the INIT_FIRST macro from my implementation. Are you sure llist_t *tests will always be initialized before calling the test registering

Re: [PATCH 0/6] Add a unit-testing framework to Busybox

2014-06-26 Thread Denys Vlasenko
On Thu, Jun 26, 2014 at 12:00 PM, Bartosz Gołaszewski bartekg...@gmail.com wrote: 2014-06-22 16:31 GMT+02:00 Denys Vlasenko vda.li...@googlemail.com: Applied all patches with some editing. Thanks a lot! Hi Denys, I see, that you removed the INIT_FIRST macro from my implementation. Are you

Re: [PATCH 0/6] Add a unit-testing framework to Busybox

2014-06-26 Thread Rich Felker
On Thu, Jun 26, 2014 at 12:35:53PM +0200, Denys Vlasenko wrote: On Thu, Jun 26, 2014 at 12:00 PM, Bartosz Gołaszewski bartekg...@gmail.com wrote: 2014-06-22 16:31 GMT+02:00 Denys Vlasenko vda.li...@googlemail.com: Applied all patches with some editing. Thanks a lot! Hi Denys, I

Re: [PATCH 0/6] Add a unit-testing framework to Busybox

2014-06-26 Thread Bartosz Gołaszewski
2014-06-26 14:12 GMT+02:00 Rich Felker dal...@libc.org: On Thu, Jun 26, 2014 at 12:35:53PM +0200, Denys Vlasenko wrote: Global data is initialized to zero at program load time. And even if you need a non-zero initial value, static initialization is usually suitable; there's no need for code

Re: [PATCH 0/6] Add a unit-testing framework to Busybox

2014-06-06 Thread Bartosz Gołaszewski
2014-04-16 1:06 GMT+02:00 Bartosz Golaszewski bartekg...@gmail.com: This set of patches proposes to add a simple unit-testing framework to Busybox. First four patches implement the actual framework and document it, while last two add some example test cases. Bartosz Golaszewski (6):

Re: [PATCH 0/6] Add a unit-testing framework to Busybox

2014-04-28 Thread Bartosz Gołaszewski
2014-04-16 1:06 GMT+02:00 Bartosz Golaszewski bartekg...@gmail.com: This set of patches proposes to add a simple unit-testing framework to Busybox. First four patches implement the actual framework and document it, while last two add some example test cases. Bartosz Golaszewski (6):

[PATCH 0/6] Add a unit-testing framework to Busybox

2014-04-15 Thread Bartosz Golaszewski
This set of patches proposes to add a simple unit-testing framework to Busybox. First four patches implement the actual framework and document it, while last two add some example test cases. Bartosz Golaszewski (6): unit-tests: add some helper macros for unit-test framework implementation