ICU-8070 Check that the rule parser handles a comment without terminating end-of-line

X-SVN-Rev: 35257
This commit is contained in:
Markus Scherer 2014-02-27 22:52:07 +00:00
parent e9e591473c
commit a2a0fa000d
2 changed files with 12 additions and 1 deletions

View file

@ -1307,7 +1307,15 @@ void CollationRegressionTest::caseFirstCompressionSub(Collator *col, UnicodeStri
}
}
void CollationRegressionTest::TestTrailingComment() {
// ICU ticket #8070:
// Check that the rule parser handles a comment without terminating end-of-line.
IcuTestErrorCode errorCode(*this, "TestTrailingComment");
RuleBasedCollator coll(UNICODE_STRING_SIMPLE("&c<b#comment1\n<a#comment2"), errorCode);
UnicodeString a((UChar)0x61), b((UChar)0x62), c((UChar)0x63);
assertTrue("c<b", coll.compare(c, b) < 0);
assertTrue("b<a", coll.compare(b, a) < 0);
}
void CollationRegressionTest::compareArray(Collator &c,
const UChar tests[][CollationRegressionTest::MAX_TOKEN_LEN],
@ -1446,6 +1454,7 @@ void CollationRegressionTest::runIndexedTest(int32_t index, UBool exec, const ch
TESTCASE_AUTO(Test4179216);
TESTCASE_AUTO(TestT7189);
TESTCASE_AUTO(TestCaseFirstCompression);
TESTCASE_AUTO(TestTrailingComment);
TESTCASE_AUTO_END;
}

View file

@ -238,6 +238,8 @@ public:
//
void TestCaseFirstCompression();
void TestTrailingComment();
private:
//------------------------------------------------------------------------
// Internal utilities