search for: 80bef2e

Displaying 2 results from an estimated 2 matches for "80bef2e".

Did you mean: 80be0ce
2018 Feb 07
0
[nbdkit PATCH v2 2/2] utils: Revamp nbdkit_parse_size
...orrectly. Signed-off-by: Eric Blake <eblake@redhat.com> --- src/test-utils.c | 20 ++++++------ src/utils.c | 95 ++++++++++++++++++++++++++++++++++++-------------------- 2 files changed, 72 insertions(+), 43 deletions(-) diff --git a/src/test-utils.c b/src/test-utils.c index e26a6f3..80bef2e 100644 --- a/src/test-utils.c +++ b/src/test-utils.c @@ -61,19 +61,19 @@ test_nbdkit_parse_size (void) { "", -1 }, { "0x0", -1 }, { "garbage", -1 }, - /* { "0garbage", -1 }, */ - /* { "-1", -1 }, */ - /* { "-2", -1...
2018 Feb 07
3
[nbdkit PATCH v2 0/2] Improve nbdkit_parse_size
Take two, this time split into two patches. I liked Rich's suggestion of unit-testing src/ files directly in src/, and automake is a lot happier with this than with my v1 attempt that tried to compile .c files across directories. It's still enough of a change that I'm not pushing it right away. Eric Blake (2): build: Add unit-testing of internal files utils: Revamp