summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-10-24 14:56:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-10-24 14:56:30 +0200
commitc2097d5078896a71b8e1ac4074cc03766f5d7098 (patch)
tree9e6e06a5e4e0f91334b7627891d3a6d754ad9e23 /sal
parente90f2d9e078df3721cd146626745f4607ae9f1c1 (diff)
Make testUtf8StringLiterals work when char is unsigned
...as is reportedly the case for Linux AArch64 Change-Id: I7e11c42f4437c8aad9dd734603fa7e0d458c9754
Diffstat (limited to 'sal')
-rw-r--r--sal/qa/rtl/strings/test_ostring.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/qa/rtl/strings/test_ostring.cxx b/sal/qa/rtl/strings/test_ostring.cxx
index 110831758916..3732f7488bde 100644
--- a/sal/qa/rtl/strings/test_ostring.cxx
+++ b/sal/qa/rtl/strings/test_ostring.cxx
@@ -111,9 +111,9 @@ void Test::testUtf8StringLiterals()
{
const OString sIn(u8"ßa");
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(3), sIn.getLength());
- CPPUNIT_ASSERT_EQUAL(-61, static_cast<int>(sIn[0]));
- CPPUNIT_ASSERT_EQUAL(-97, static_cast<int>(sIn[1]));
- CPPUNIT_ASSERT_EQUAL(97, static_cast<int>(sIn[2]));
+ CPPUNIT_ASSERT_EQUAL(195, int(static_cast<unsigned char>(sIn[0])));
+ CPPUNIT_ASSERT_EQUAL(159, int(static_cast<unsigned char>(sIn[1])));
+ CPPUNIT_ASSERT_EQUAL(97, int(static_cast<unsigned char>(sIn[2])));
}
CPPUNIT_TEST_SUITE_REGISTRATION(Test);