Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2019-02-27 Thread Brendan Higgins
On Mon, Feb 18, 2019 at 2:56 PM Frank Rowand wrote: > > On 2/12/19 5:44 PM, Brendan Higgins wrote: > > On Wed, Nov 28, 2018 at 12:56 PM Rob Herring wrote: > >> > >> On Wed, Nov 28, 2018 at 1:38 PM Brendan Higgins > >> wrote: > >>> --- > >>> drivers/of/Kconfig|1 + > >>>

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2019-02-19 Thread Frank Rowand
On 2/12/19 5:44 PM, Brendan Higgins wrote: > On Wed, Nov 28, 2018 at 12:56 PM Rob Herring wrote: >> >> On Wed, Nov 28, 2018 at 1:38 PM Brendan Higgins >> wrote: >>> >>> Migrate tests without any cleanup, or modifying test logic in anyway to >>> run under KUnit using the KUnit expectation and

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2019-02-16 Thread Brendan Higgins via dri-devel
On Thu, Feb 14, 2019 at 12:10 PM Rob Herring wrote: > > On Tue, Feb 12, 2019 at 7:44 PM Brendan Higgins > wrote: > > > > On Wed, Nov 28, 2018 at 12:56 PM Rob Herring wrote: > > > > > > On Wed, Nov 28, 2018 at 1:38 PM Brendan Higgins > > > wrote: > > > > > > > > Migrate tests without any

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2019-02-14 Thread Rob Herring via dri-devel
On Tue, Feb 12, 2019 at 7:44 PM Brendan Higgins wrote: > > On Wed, Nov 28, 2018 at 12:56 PM Rob Herring wrote: > > > > On Wed, Nov 28, 2018 at 1:38 PM Brendan Higgins > > wrote: > > > > > > Migrate tests without any cleanup, or modifying test logic in anyway to > > > run under KUnit using the

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2019-02-14 Thread Brendan Higgins via dri-devel
On Wed, Nov 28, 2018 at 12:56 PM Rob Herring wrote: > > On Wed, Nov 28, 2018 at 1:38 PM Brendan Higgins > wrote: > > > > Migrate tests without any cleanup, or modifying test logic in anyway to > > run under KUnit using the KUnit expectation and assertion API. > > Nice! You beat me to it. This is

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2018-12-06 Thread Rob Herring
On Wed, Dec 5, 2018 at 5:43 PM Brendan Higgins wrote: > > On Tue, Dec 4, 2018 at 5:41 AM Rob Herring wrote: > > > > On Mon, Dec 3, 2018 at 6:14 PM Brendan Higgins > > wrote: > > > > > > On Thu, Nov 29, 2018 at 4:40 PM Randy Dunlap > > > wrote: > > > > > > > > On 11/28/18 12:56 PM, Rob Herring

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2018-12-06 Thread Brendan Higgins
On Tue, Dec 4, 2018 at 5:41 AM Rob Herring wrote: > > On Mon, Dec 3, 2018 at 6:14 PM Brendan Higgins > wrote: > > > > On Thu, Nov 29, 2018 at 4:40 PM Randy Dunlap wrote: > > > > > > On 11/28/18 12:56 PM, Rob Herring wrote: > > > >> diff --git a/drivers/of/Kconfig b/drivers/of/Kconfig > > > >>

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2018-12-05 Thread Frank Rowand
On 11/28/18 11:36 AM, Brendan Higgins wrote: > Migrate tests without any cleanup, or modifying test logic in anyway to > run under KUnit using the KUnit expectation and assertion API. > > Signed-off-by: Brendan Higgins > --- > drivers/of/Kconfig|1 + > drivers/of/unittest.c | 1405

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2018-12-04 Thread Rob Herring
On Mon, Dec 3, 2018 at 6:14 PM Brendan Higgins wrote: > > On Thu, Nov 29, 2018 at 4:40 PM Randy Dunlap wrote: > > > > On 11/28/18 12:56 PM, Rob Herring wrote: > > >> diff --git a/drivers/of/Kconfig b/drivers/of/Kconfig > > >> index ad3fcad4d75b8..f309399deac20 100644 > > >> ---

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2018-12-04 Thread Brendan Higgins
On Thu, Nov 29, 2018 at 4:40 PM Randy Dunlap wrote: > > On 11/28/18 12:56 PM, Rob Herring wrote: > >> diff --git a/drivers/of/Kconfig b/drivers/of/Kconfig > >> index ad3fcad4d75b8..f309399deac20 100644 > >> --- a/drivers/of/Kconfig > >> +++ b/drivers/of/Kconfig > >> @@ -15,6 +15,7 @@ if OF > >>

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2018-12-04 Thread Brendan Higgins
On Wed, Nov 28, 2018 at 12:56 PM Rob Herring wrote: > > On Wed, Nov 28, 2018 at 1:38 PM Brendan Higgins > wrote: > > > > Migrate tests without any cleanup, or modifying test logic in anyway to > > run under KUnit using the KUnit expectation and assertion API. > > Nice! You beat me to it. This is

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2018-11-30 Thread Randy Dunlap
On 11/28/18 12:56 PM, Rob Herring wrote: >> diff --git a/drivers/of/Kconfig b/drivers/of/Kconfig >> index ad3fcad4d75b8..f309399deac20 100644 >> --- a/drivers/of/Kconfig >> +++ b/drivers/of/Kconfig >> @@ -15,6 +15,7 @@ if OF >> config OF_UNITTEST >> bool "Device Tree runtime unit tests"

[RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2018-11-29 Thread Brendan Higgins
Migrate tests without any cleanup, or modifying test logic in anyway to run under KUnit using the KUnit expectation and assertion API. Signed-off-by: Brendan Higgins --- drivers/of/Kconfig|1 + drivers/of/unittest.c | 1405 ++--- 2 files changed, 752

Re: [RFC v3 17/19] of: unittest: migrate tests to run on KUnit

2018-11-28 Thread Rob Herring
On Wed, Nov 28, 2018 at 1:38 PM Brendan Higgins wrote: > > Migrate tests without any cleanup, or modifying test logic in anyway to > run under KUnit using the KUnit expectation and assertion API. Nice! You beat me to it. This is probably going to conflict with what is in the DT tree for 4.21.