am 017cec03: am d8532678: am 5800aab3: Merge "Fix wmemmove test."

* commit '017cec033a20c97f3118df0432cec7fd3bf73865':
  Fix wmemmove test.
This commit is contained in:
Christopher Ferris 2014-05-29 23:50:09 +00:00 committed by Android Git Automerger
commit c86e40f7d5

View File

@ -450,6 +450,6 @@ TEST(wchar, wmemmove) {
wmemmove(wstr, const_wstr, sizeof(const_wstr)/sizeof(wchar_t));
EXPECT_STREQ(const_wstr, wstr);
wmemmove(wstr+5, wstr, sizeof(const_wstr)/sizeof(wchar_t) - 5);
EXPECT_STREQ(L"This This is a test of something or other.", wstr);
wmemmove(wstr+5, wstr, sizeof(const_wstr)/sizeof(wchar_t) - 6);
EXPECT_STREQ(L"This This is a test of something or other", wstr);
}