[git commit] libbb: another unit test for is_suffixed_with
Denys Vlasenko
vda.linux at googlemail.com
Tue Sep 15 21:38:01 UTC 2015
commit: http://git.busybox.net/busybox/commit/?id=f085344d5c4de46d0ef3e15a97ef444fd7cc3194
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master
Suggested by Bartosz Golaszewski.
Signed-off-by: Tito Ragusa <farmatito at tiscali.it>
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
libbb/compare_string_array.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/libbb/compare_string_array.c b/libbb/compare_string_array.c
index 3dbd3eb..2f51237 100644
--- a/libbb/compare_string_array.c
+++ b/libbb/compare_string_array.c
@@ -159,6 +159,7 @@ BBUNIT_DEFINE_TEST(is_suffixed_with)
BBUNIT_ASSERT_STREQ("foo", is_suffixed_with("foo", "foo"));
BBUNIT_ASSERT_STREQ("", is_suffixed_with("foo", ""));
BBUNIT_ASSERT_STREQ("", is_suffixed_with("", ""));
+ BBUNIT_ASSERT_STREQ("foo", is_suffixed_with("barfoofoo", "foo"));
BBUNIT_ASSERT_NULL(is_suffixed_with("foo", "bar foo"));
BBUNIT_ASSERT_NULL(is_suffixed_with("foo foo", "bar"));
More information about the busybox-cvs
mailing list