summaryrefslogtreecommitdiffstats
path: root/tests/unit/locale_test.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-01-09 20:18:29 +0100
committerTianjie Xu <xunchang@google.com>2017-01-19 04:37:06 +0100
commitd17a6885253da909e376ba5ca5084f5281f3557c (patch)
tree8603c5d1df466bcec6dda5c88ad8cd3bc66cad6d /tests/unit/locale_test.cpp
parentMerge "minui: Export minui/minui.h." (diff)
downloadandroid_bootable_recovery-d17a6885253da909e376ba5ca5084f5281f3557c.tar
android_bootable_recovery-d17a6885253da909e376ba5ca5084f5281f3557c.tar.gz
android_bootable_recovery-d17a6885253da909e376ba5ca5084f5281f3557c.tar.bz2
android_bootable_recovery-d17a6885253da909e376ba5ca5084f5281f3557c.tar.lz
android_bootable_recovery-d17a6885253da909e376ba5ca5084f5281f3557c.tar.xz
android_bootable_recovery-d17a6885253da909e376ba5ca5084f5281f3557c.tar.zst
android_bootable_recovery-d17a6885253da909e376ba5ca5084f5281f3557c.zip
Diffstat (limited to '')
-rw-r--r--tests/unit/locale_test.cpp3
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"));
}