mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
38082ccbee
* frontend: Added support for message context to localisations. * frontend: Added string_view versions of the message lookup functions. * frontend: Added a few more folder options to the internal UI. * emu/softlist.cpp: Use more appropriate containers. * Switched to Python 3 by default - this will become a requirement. * Updated msgfmt.py for message context support. * frontend: Show all software item info in the internal UI. * frontend: Search alternate titles in software selection menu. * 3rdparty/utf8proc: Updated to v2.6.1 (has several fixes). * frontend: Added software filters for common info fields. * frontend: Allow UI manager to hold onto persistent session data. * frontend: Cache software lists for eight machines. * frontend: Added support for loading localised system names. * frontend: Add UI for selecting localised system names.
51 lines
2.4 KiB
C
51 lines
2.4 KiB
C
/* Miscellaneous tests, e.g. regression tests */
|
|
|
|
#include "tests.h"
|
|
|
|
static void issue128(void) /* #128 */
|
|
{
|
|
utf8proc_uint8_t input[] = {0x72, 0xcc, 0x87, 0xcc, 0xa3, 0x00}; /* "r\u0307\u0323" */
|
|
utf8proc_uint8_t nfc[] = {0xe1, 0xb9, 0x9b, 0xcc, 0x87, 0x00}; /* "\u1E5B\u0307" */
|
|
utf8proc_uint8_t nfd[] = {0x72, 0xcc, 0xa3, 0xcc, 0x87, 0x00}; /* "r\u0323\u0307" */
|
|
utf8proc_uint8_t *nfc_out, *nfd_out;
|
|
nfc_out = utf8proc_NFC(input);
|
|
printf("NFC \"%s\" -> \"%s\" vs. \"%s\"\n", (char*)input, (char*)nfc_out, (char*)nfc);
|
|
check(strlen((char*) nfc_out) == 5, "incorrect nfc length");
|
|
check(!memcmp(nfc, nfc_out, 6), "incorrect nfc data");
|
|
nfd_out = utf8proc_NFD(input);
|
|
printf("NFD \"%s\" -> \"%s\" vs. \"%s\"\n", (char*)input, (char*)nfd_out, (char*)nfd);
|
|
check(strlen((char*) nfd_out) == 5, "incorrect nfd length");
|
|
check(!memcmp(nfd, nfd_out, 6), "incorrect nfd data");
|
|
free(nfd_out); free(nfc_out);
|
|
}
|
|
|
|
static void issue102(void) /* #128 */
|
|
{
|
|
utf8proc_uint8_t input[] = {0x58, 0xe2, 0x81, 0xa5, 0x45, 0xcc, 0x80, 0xc2, 0xad, 0xe1, 0xb4, 0xac, 0x00}; /* "X\u2065E\u0300\u00ad\u1d2c" */
|
|
utf8proc_uint8_t stripna[] = {0x78, 0xc3, 0xa8, 0x61, 0x00}; /* "x\u00e8a" */
|
|
utf8proc_uint8_t correct[] = {0x78, 0xe2, 0x81, 0xa5, 0xc3, 0xa8, 0x61, 0x00}; /* "x\u2065\u00e8a" */
|
|
utf8proc_uint8_t *output;
|
|
utf8proc_map(input, 0, &output, UTF8PROC_NULLTERM | UTF8PROC_STABLE |
|
|
UTF8PROC_COMPOSE | UTF8PROC_COMPAT | UTF8PROC_CASEFOLD | UTF8PROC_IGNORE | UTF8PROC_STRIPNA);
|
|
printf("NFKC_Casefold \"%s\" -> \"%s\" vs. \"%s\"\n", (char*)input, (char*)output, (char*)stripna);
|
|
check(strlen((char*) output) == 4, "incorrect NFKC_Casefold+stripna length");
|
|
check(!memcmp(stripna, output, 5), "incorrect NFKC_Casefold+stripna data");
|
|
free(output);
|
|
output = utf8proc_NFKC_Casefold(input);
|
|
printf("NFKC_Casefold \"%s\" -> \"%s\" vs. \"%s\"\n", (char*)input, (char*)output, (char*)correct);
|
|
check(strlen((char*) output) == 7, "incorrect NFKC_Casefold length");
|
|
check(!memcmp(correct, output, 8), "incorrect NFKC_Casefold data");
|
|
free(output);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
issue128();
|
|
issue102();
|
|
#ifdef UNICODE_VERSION
|
|
printf("Unicode version: Makefile has %s, has API %s\n", UNICODE_VERSION, utf8proc_unicode_version());
|
|
check(!strcmp(UNICODE_VERSION, utf8proc_unicode_version()), "utf8proc_unicode_version mismatch");
|
|
#endif
|
|
printf("Misc tests SUCCEEDED.\n");
|
|
return 0;
|
|
}
|