RE: rtems-tester initial port getting "'NoneType' object is not iterable"

2019-09-23 Thread Kinsey Moore
> -Original Message- > From: devel On Behalf Of dufa...@hda.com > Sent: Saturday, September 21, 2019 08:48 > To: Joel Sherrill > Cc: rtems-de...@rtems.org > Subject: Re: rtems-tester initial port getting "'NoneType' object is not > iterable" > > > > > On Sep 20, 2019, at 21:43 , Joel

[PATCH] Update docs for log mode change and JSON reporting

2019-08-21 Thread Kinsey Moore
The option --report-mode has been changed to --log-mode to reduce ambiguity and --report-format has been added along with --report-path for machine readable test reporting. --- user/tools/tester.rst | 29 + 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/

[PATCH v3] Add JSON log generation

2019-08-21 Thread Kinsey Moore
Add log formatter hooks and JSON log formatter to the test infrastructure for consumption by automated processes or report generators. --- tester/rt/test.py | 124 -- 1 file changed, 111 insertions(+), 13 deletions(-) diff --git a/tester/rt/test

RE: [PATCH v2] Add JSON log generation

2019-08-20 Thread Kinsey Moore
> -Original Message- > From: Chris Johns > Sent: Monday, August 19, 2019 17:33 > To: Kinsey Moore ; devel@rtems.org > Subject: Re: [PATCH v2] Add JSON log generation > > On 20/8/19 2:13 am, Kinsey Moore wrote: > > Add log formatter hooks and JSO

[PATCH v2] Add JSON log generation

2019-08-19 Thread Kinsey Moore
Add log formatter hooks and JSON log formatter to the test infrastructure for consumption by automated processes or report generators. --- tester/rt/test.py | 84 +++ 1 file changed, 84 insertions(+) diff --git a/tester/rt/test.py b/tester/rt/te

[PATCH] bsps/arm/shared: Add GICv3 implementation

2019-08-16 Thread Kinsey Moore
This adds support for the GICv3 interrupt controller along with the redistributor to control SGIs and PPIs which wasn't present in GICv2 implementations. GICv3 implementations only optionally support memory-mapped GICC interface interaction and require system register access be implemented, so the

[PATCH] Add JSON log generation

2019-08-16 Thread Kinsey Moore
This adds JSON log generation to the test infrastructure for consumption by automated processes or report generators. --- tester/rt/test.py | 66 +++ 1 file changed, 66 insertions(+) diff --git a/tester/rt/test.py b/tester/rt/test.py index da0a1

[PATCH] Increase stack size for crypt01 for SHA512

2019-03-01 Thread Kinsey Moore
SHA512_Transform will blow out the stack on register-poor architectures with a small minimum stack size due to large locals and plentiful temporaries pushed on to the stack. Increase the stack size to 32K for this test. closes #3711 --- testsuites/libtests/crypt01/init.c | 4 +++- 1 file changed,

[PATCH] Correct system register for virtual timer value

2019-02-21 Thread Kinsey Moore
The system register in use for retrieval of the virtual timer value was mistakenly copied from the physical timer value retrieval function. Virtual timer value retrieval should use the same system register as the virtual timer value setter. --- cpukit/score/cpu/arm/include/libcpu/arm-cp15.h | 2 +-

<    6   7   8   9   10   11