From 1c02705b8f83019d571e745f01a6e6c54174482c Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Tue, 25 Feb 2014 22:56:51 +0000 Subject: [PATCH] ICU-9822 fix U_STRING_INIT string length X-SVN-Rev: 35228 --- icu4c/source/test/cintltst/cucdtst.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/test/cintltst/cucdtst.c b/icu4c/source/test/cintltst/cucdtst.c index ccbae955bfc..090b939c0ea 100644 --- a/icu4c/source/test/cintltst/cucdtst.c +++ b/icu4c/source/test/cintltst/cucdtst.c @@ -3067,7 +3067,7 @@ TestConsistency() { U_STRING_DECL(mathBlocksPattern, "[[:block=Mathematical Operators:][:block=Miscellaneous Mathematical Symbols-A:][:block=Miscellaneous Mathematical Symbols-B:][:block=Supplemental Mathematical Operators:][:block=Mathematical Alphanumeric Symbols:]]", - 1+32+46+46+45+43+1+1); /* +1 for NUL */ + 214); U_STRING_DECL(mathPattern, "[:Math:]", 8); U_STRING_DECL(unassignedPattern, "[:Cn:]", 6); U_STRING_DECL(unknownPattern, "[:sc=Unknown:]", 14); @@ -3081,7 +3081,7 @@ TestConsistency() { U_STRING_INIT(mathBlocksPattern, "[[:block=Mathematical Operators:][:block=Miscellaneous Mathematical Symbols-A:][:block=Miscellaneous Mathematical Symbols-B:][:block=Supplemental Mathematical Operators:][:block=Mathematical Alphanumeric Symbols:]]", - 1+32+46+46+45+43+1+1); /* +1 for NUL */ + 214); U_STRING_INIT(mathPattern, "[:Math:]", 8); U_STRING_INIT(unassignedPattern, "[:Cn:]", 6); U_STRING_INIT(unknownPattern, "[:sc=Unknown:]", 14);