diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-07-28 16:59:11 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-07-28 16:59:11 +0100 |
commit | 1e4ff872be639e93e8df3918a965bb08675dcc77 (patch) | |
tree | 77aed8f6f542ebe09cd66f0871ef4a184b160756 /src/tests/tests.c | |
parent | 20d35b014521ff27bbdacfe5245c8e081a160bb9 (diff) | |
download | ipxe-1e4ff872be639e93e8df3918a965bb08675dcc77.tar.gz |
[linebuf] Support buffering of multiple lines
Allow line buffer to accumulate multiple lines, with buffered_line()
returning each freshly-completed line as it is encountered. This
allows buffered lines to be subsequently processed as a group.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/tests/tests.c')
-rw-r--r-- | src/tests/tests.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/tests.c b/src/tests/tests.c index 0e6afee6e..54ce86677 100644 --- a/src/tests/tests.c +++ b/src/tests/tests.c @@ -66,3 +66,4 @@ REQUIRE_OBJECT ( uri_test ); REQUIRE_OBJECT ( profile_test ); REQUIRE_OBJECT ( setjmp_test ); REQUIRE_OBJECT ( pccrc_test ); +REQUIRE_OBJECT ( linebuf_test ); |