13
0

Copy UTF-8 test strings from libpbd tests into libardour test utils

Ideally these would be shared.
This commit is contained in:
Tim Mayberry 2016-09-18 21:38:41 +10:00
parent 9192a2e969
commit 1a0ac52021
2 changed files with 16 additions and 0 deletions

View File

@ -152,3 +152,17 @@ get_test_sample_rate ()
{
return 44100;
}
void
get_utf8_test_strings (std::vector<std::string>& result)
{
// These are all translations of "Ardour" from google translate
result.push_back ("Ardour"); // Reference
result.push_back ("\320\277\321\213\320\273"); // Russian
result.push_back ("\305\276ar"); // Croatian
result.push_back ("\340\270\204\340\270\247\340\270\262\340\270\241\340\270\201\340\270\243\340\270\260\340\270\225\340\270\267\340\270\255\340\270\243\340\270\267\340\270\255\340\270\243\340\271\211\340\270\231"); // Thai
result.push_back ("\325\245\325\274\325\241\325\266\325\244"); // Armenian
result.push_back ("\340\246\254\340\247\215\340\246\257\340\246\227\340\247\215\340\246\260\340\246\244\340\246\276"); // Bengali
result.push_back ("\346\203\205\347\206\261"); // Japanese
result.push_back ("\347\203\255\346\203\205"); // Chinese (Simplified)
}

View File

@ -43,4 +43,6 @@ extern void create_and_start_dummy_backend ();
extern void stop_and_destroy_backend ();
extern ARDOUR::Session* load_session (std::string, std::string);
void get_utf8_test_strings (std::vector<std::string>& results);
#endif