From 1787274280d92c379ca52a345248a8169d1df830 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 18 Oct 2015 18:18:37 +0100 Subject: [PATCH] Comment new tests. --- build/has_icu_test.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/has_icu_test.cpp b/build/has_icu_test.cpp index 7b3eb62c..e56c58c4 100644 --- a/build/has_icu_test.cpp +++ b/build/has_icu_test.cpp @@ -23,6 +23,11 @@ int main() { + // To detect possible binary mismatches between the installed ICU build, and whatever + // C++ std lib's we're using, we need to: + // * Make sure we call ICU C++ API's + // * Make sure we call std lib C++ API's as well (cout). + // * Be sure this program is run, not just built. UErrorCode err = U_ZERO_ERROR; UChar32 c = ::u_charFromName(U_UNICODE_CHAR_NAME, "GREEK SMALL LETTER ALPHA", &err); std::cout << (int)c << std::endl;