mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
unit tests to prove i didn't screw up
svn:r4602
This commit is contained in:
parent
8c657e4157
commit
7ac36a9a74
@ -748,6 +748,13 @@ test_util(void)
|
||||
SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
|
||||
smartlist_clear(sl);
|
||||
|
||||
cp = smartlist_join_strings(sl, "XY", 0, NULL);
|
||||
test_streq(cp, "");
|
||||
tor_free(cp);
|
||||
cp = smartlist_join_strings(sl, "XY", 1, NULL);
|
||||
test_streq(cp, "XY");
|
||||
tor_free(cp);
|
||||
|
||||
smartlist_split_string(sl, " z <> zhasd <> <> bnud<> ", "<>", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
|
||||
test_eq(3, smartlist_len(sl));
|
||||
test_streq("z", smartlist_get(sl, 0));
|
||||
|
Loading…
Reference in New Issue
Block a user