Re: [Qemu-devel] [PATCH 09/10] qht: add test program

2016-04-20 Thread Alex Bennée
Emilio G. Cota writes: > On Fri, Apr 08, 2016 at 11:45:41 +0100, Alex Bennée wrote: > (snip the entire patch) >> A couple of notes: >> >> - these should use the gtester boiler plate for reporting results > > Done in v3. > >> - AFAICT they are not exercising the multi-element hashing we actua

Re: [Qemu-devel] [PATCH 09/10] qht: add test program

2016-04-19 Thread Emilio G. Cota
On Fri, Apr 08, 2016 at 11:45:41 +0100, Alex Bennée wrote: (snip the entire patch) > A couple of notes: > > - these should use the gtester boiler plate for reporting results Done in v3. > - AFAICT they are not exercising the multi-element hashing we actually > use in the main code > -

Re: [Qemu-devel] [PATCH 09/10] qht: add test program

2016-04-08 Thread Alex Bennée
Emilio G. Cota writes: > Signed-off-by: Emilio G. Cota > --- > tests/.gitignore | 1 + > tests/Makefile | 6 +++- > tests/test-qht.c | 100 > +++ > 3 files changed, 106 insertions(+), 1 deletion(-) > create mode 100644 tests/test-qht.

[Qemu-devel] [PATCH 09/10] qht: add test program

2016-04-04 Thread Emilio G. Cota
Signed-off-by: Emilio G. Cota --- tests/.gitignore | 1 + tests/Makefile | 6 +++- tests/test-qht.c | 100 +++ 3 files changed, 106 insertions(+), 1 deletion(-) create mode 100644 tests/test-qht.c diff --git a/tests/.gitignore b/tests/.g