diff options
author | Elliott Hughes <enh@google.com> | 2014-11-06 15:04:08 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-11-06 15:52:22 -0800 |
commit | b20c24456e43df430ec5626a68e5dc0dc6929344 (patch) | |
tree | c9b85b4d913f8f2738bdc8772b9b9a21d6ab51dc /tests/strings_test.cpp | |
parent | 08a70184b42ef2963794a56233b0253e0b367253 (diff) | |
download | android_bionic-b20c24456e43df430ec5626a68e5dc0dc6929344.tar.gz android_bionic-b20c24456e43df430ec5626a68e5dc0dc6929344.tar.bz2 android_bionic-b20c24456e43df430ec5626a68e5dc0dc6929344.zip |
Implement all the POSIX _l functions.
Strictly speaking, this only implements the _l variants of the functions
we actually have. We're still missing nl_langinfo_l, for example, but we
don't have nl_langinfo either.
Change-Id: Ie711c7b04e7b9100932a13f5a5d5b28847eb4c12
Diffstat (limited to 'tests/strings_test.cpp')
-rw-r--r-- | tests/strings_test.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/strings_test.cpp b/tests/strings_test.cpp index 5200859fb..823aa4f0f 100644 --- a/tests/strings_test.cpp +++ b/tests/strings_test.cpp @@ -17,6 +17,7 @@ #include <gtest/gtest.h> #include <errno.h> +#include <locale.h> #include <strings.h> TEST(strings, ffs) { @@ -30,3 +31,33 @@ TEST(strings, ffs) { ASSERT_EQ(27, ffs(0x04000000)); ASSERT_EQ(32, ffs(0x80000000)); } + +TEST(strings, strcasecmp) { + ASSERT_EQ(0, strcasecmp("hello", "HELLO")); + ASSERT_LT(strcasecmp("hello1", "hello2"), 0); + ASSERT_GT(strcasecmp("hello2", "hello1"), 0); +} + +TEST(strings, strcasecmp_l) { + locale_t l = newlocale(LC_ALL, "C", 0); + ASSERT_EQ(0, strcasecmp_l("hello", "HELLO", l)); + ASSERT_LT(strcasecmp_l("hello1", "hello2", l), 0); + ASSERT_GT(strcasecmp_l("hello2", "hello1", l), 0); + freelocale(l); +} + +TEST(strings, strncasecmp) { + ASSERT_EQ(0, strncasecmp("hello", "HELLO", 3)); + ASSERT_EQ(0, strncasecmp("abcXX", "ABCYY", 3)); + ASSERT_LT(strncasecmp("hello1", "hello2", 6), 0); + ASSERT_GT(strncasecmp("hello2", "hello1", 6), 0); +} + +TEST(strings, strncasecmp_l) { + locale_t l = newlocale(LC_ALL, "C", 0); + ASSERT_EQ(0, strncasecmp_l("hello", "HELLO", 3, l)); + ASSERT_EQ(0, strncasecmp_l("abcXX", "ABCYY", 3, l)); + ASSERT_LT(strncasecmp_l("hello1", "hello2", 6, l), 0); + ASSERT_GT(strncasecmp_l("hello2", "hello1", 6, l), 0); + freelocale(l); +} |