13
0

Add test utility function to PBD tests to return some utf-8 strings

This is currently unused
This commit is contained in:
Tim Mayberry 2014-06-25 13:40:18 +10:00 committed by Paul Davis
parent 53c959ad8f
commit 4ced10bfe5
2 changed files with 16 additions and 0 deletions

View File

@ -57,3 +57,17 @@ test_output_directory (std::string prefix)
} while (g_mkdir_with_parents (new_test_dir.c_str(), 0755) != 0);
return new_test_dir;
}
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

@ -25,4 +25,6 @@ PBD::Searchpath test_search_path ();
std::string test_output_directory (std::string prefix);
void get_utf8_test_strings (std::vector<std::string>& results);
#endif