aboutsummaryrefslogtreecommitdiffstats
path: root/memelem.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-11-23 23:37:11 +0100
committerMattias Andrée <maandree@kth.se>2018-11-23 23:37:11 +0100
commitea9beb1d5dceb99797482ae8b580f5fbd7be8128 (patch)
tree7a4c9faa17f02c36f6cbd3ee24ce15bc62c67e10 /memelem.c
parentSplit out memelem.h from mem.h (diff)
downloadlibsimple-ea9beb1d5dceb99797482ae8b580f5fbd7be8128.tar.gz
libsimple-ea9beb1d5dceb99797482ae8b580f5fbd7be8128.tar.bz2
libsimple-ea9beb1d5dceb99797482ae8b580f5fbd7be8128.tar.xz
Add tests
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'memelem.c')
-rw-r--r--memelem.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/memelem.c b/memelem.c
index fbd16d7..29d6ed9 100644
--- a/memelem.c
+++ b/memelem.c
@@ -92,6 +92,11 @@ main(void)
assert(!libsimple_memelem("bc123abc123a", 4, "123", 3));
assert(!libsimple_memelem("abc123abc123", 0, "123", 3));
+ assert(!strcmpnul(libsimple_memelem("-a-aa--a", 4, "a-", 2), "a--a"));
+ assert(!strcmpnul(libsimple_memelem("--a--aa----a", 4, "a--", 3), "a----a"));
+ assert(!strcmpnul(libsimple_memelem("---a---aa------a", 4, "a---", 4), "a------a"));
+ assert(!strcmpnul(libsimple_memelem("-------a-------aa--------------a", 4, "a-------", 8), "a--------------a"));
+
return 0;
}