summaryrefslogtreecommitdiff
path: root/libs/pbd/test
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2014-06-25 13:40:18 +1000
committerPaul Davis <paul@linuxaudiosystems.com>2014-06-25 12:40:11 -0400
commit4ced10bfe564168c5844cc4817c174f31db7393c (patch)
treebefa5cfbf8a30ed86c53350e22fb33153ac19dde /libs/pbd/test
parent53c959ad8f75b4d5c394e091d94e22feb63cb23d (diff)
Add test utility function to PBD tests to return some utf-8 strings
This is currently unused
Diffstat (limited to 'libs/pbd/test')
-rw-r--r--libs/pbd/test/test_common.cc14
-rw-r--r--libs/pbd/test/test_common.h2
2 files changed, 16 insertions, 0 deletions
diff --git a/libs/pbd/test/test_common.cc b/libs/pbd/test/test_common.cc
index 2dd37864b7..d7d961ca97 100644
--- a/libs/pbd/test/test_common.cc
+++ b/libs/pbd/test/test_common.cc
@@ -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)
+}
diff --git a/libs/pbd/test/test_common.h b/libs/pbd/test/test_common.h
index bba767f56b..67aff40b38 100644
--- a/libs/pbd/test/test_common.h
+++ b/libs/pbd/test/test_common.h
@@ -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