am 66d53434: am dd5c92d4: Merge "Regression test for NDK bug 80199."

* commit '66d534347748cec93ea214ebc8d2291b59b58b8d':
  Regression test for NDK bug 80199.
This commit is contained in:
Elliott Hughes 2015-02-15 00:26:58 +00:00 committed by Android Git Automerger
commit a822795f53

View File

@ -234,6 +234,11 @@ TEST(wchar, wcsstr) {
ASSERT_EQ(NULL, wcsstr(haystack, bad_needle));
}
TEST(wchar, wcsstr_80199) {
// https://code.google.com/p/android/issues/detail?id=80199
ASSERT_TRUE(wcsstr(L"romrom", L"rom") != NULL);
}
TEST(wchar, mbtowc) {
wchar_t out[8];