Copy UTF-8 test strings from libpbd tests into libardour test utils
authorTim Mayberry <mojofunk@gmail.com>
Sun, 18 Sep 2016 11:38:41 +0000 (21:38 +1000)
committerTim Mayberry <mojofunk@gmail.com>
Mon, 19 Sep 2016 04:47:52 +0000 (14:47 +1000)
Ideally these would be shared.

libs/ardour/test/test_util.cc
libs/ardour/test/test_util.h

index 88c88c90752ec26d1994fa60c9d8b8229cb5db27..9b33f2676256fb623a377fba81f1f8b744b02c07 100644 (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)
+}
index 85041f441ad1e12d456e1201fef62e4c1e343b33..839a6d2c97d3cd4b968cf4463090b0fac1bd2568 100644 (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