diff options
author | Tianjie Xu <xunchang@google.com> | 2017-01-19 20:17:17 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-01-19 20:17:18 +0100 |
commit | 69e73ab7a9b1832d162034cdf36a8669e4e2a985 (patch) | |
tree | 8603c5d1df466bcec6dda5c88ad8cd3bc66cad6d /tests/unit | |
parent | Merge "minui: Export minui/minui.h." (diff) | |
parent | Add checkers and tests for empty locale in PNG file (diff) | |
download | android_bootable_recovery-69e73ab7a9b1832d162034cdf36a8669e4e2a985.tar android_bootable_recovery-69e73ab7a9b1832d162034cdf36a8669e4e2a985.tar.gz android_bootable_recovery-69e73ab7a9b1832d162034cdf36a8669e4e2a985.tar.bz2 android_bootable_recovery-69e73ab7a9b1832d162034cdf36a8669e4e2a985.tar.lz android_bootable_recovery-69e73ab7a9b1832d162034cdf36a8669e4e2a985.tar.xz android_bootable_recovery-69e73ab7a9b1832d162034cdf36a8669e4e2a985.tar.zst android_bootable_recovery-69e73ab7a9b1832d162034cdf36a8669e4e2a985.zip |
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/locale_test.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit/locale_test.cpp b/tests/unit/locale_test.cpp index 0e515f8c1..f73235005 100644 --- a/tests/unit/locale_test.cpp +++ b/tests/unit/locale_test.cpp @@ -26,4 +26,7 @@ TEST(LocaleTest, Misc) { EXPECT_TRUE(matches_locale("en", "en_GB")); EXPECT_FALSE(matches_locale("en_GB", "en")); EXPECT_FALSE(matches_locale("en_GB", "en_US")); + EXPECT_FALSE(matches_locale("en_US", "")); + // Empty locale prefix in the PNG file will match the input locale. + EXPECT_TRUE(matches_locale("", "en_US")); } |