aboutsummaryrefslogtreecommitdiff
path: root/lib/io/Makemodule.am
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-04 20:55:41 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-05 09:16:39 +0200
commit8e86f894afe775e39b8d02c95dd55f97a3465d27 (patch)
tree4187bf58797e2a9a5813704271e00f89d3674bde /lib/io/Makemodule.am
parent1370963723917eed6c93e28c9970a2b27be57ea4 (diff)
libio: add a simple unit test for the memory istream_t implementation
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/io/Makemodule.am')
-rw-r--r--lib/io/Makemodule.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/io/Makemodule.am b/lib/io/Makemodule.am
index 7427b42..5ec1f7e 100644
--- a/lib/io/Makemodule.am
+++ b/lib/io/Makemodule.am
@@ -19,10 +19,14 @@ endif
noinst_LIBRARIES += libio.a
-LIBIO_TESTS = test_get_line test_sparse_fb test_istream_read \
+LIBIO_TESTS = test_istream_mem test_get_line test_sparse_fb test_istream_read \
test_istream_skip test_stream_splice test_dir_iterator \
test_dir_tree_iterator test_dir_tree_iterator2 test_dir_tree_iterator3
+test_istream_mem_SOURCES = lib/io/test/istream_mem.c
+test_istream_mem_LDADD = libio.a libcompat.a
+test_istream_mem_CPPFLAGS = $(AM_CPPFLAGS)
+
test_get_line_SOURCES = lib/io/test/get_line.c
test_get_line_LDADD = libio.a libcompat.a
test_get_line_CPPFLAGS = $(AM_CPPFLAGS)