rm note about obsolete grapheme rules from README, clean up test output

This commit is contained in:
Steven G. Johnson 2014-12-14 09:01:14 -05:00
parent 4f70bbe780
commit 86447ad060
2 changed files with 1 additions and 4 deletions

View File

@ -41,9 +41,7 @@ The C library is found in this directory after successful compilation
and is named `libmojibake.a` (for the static library) and
`libmojibake.so` (for the dynamic library).
The Unicode version being supported is 7.0.0. (Grapheme segmentation
is currently based on version 4.1.0 of Unicode Standard Annex #29, but
we hope to update this soon.)
The Unicode version being supported is 7.0.0.
For Unicode normalizations, the following options are used:

View File

@ -60,7 +60,6 @@ int main(void)
for (i = 0; i <= glen; ++i)
if (g[i] == 0xff)
g[i] = '/'; /* easier-to-read output (/ is not in test strings) */
printf("line %zd\n", lineno);
check(!strcmp((char*)g, (char*)src),
"grapheme mismatch: \"%s\" instead of \"%s\"", (char*)g, (char*)src);
}