]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/intltest/frcoll.cpp
ICU-511.32.tar.gz
[apple/icu.git] / icuSources / test / intltest / frcoll.cpp
index 96849e05e31a4441e56fd3b970124a6290aeecb7..6fa666285204f356eb92b471eb4703a131cd427c 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************
  * COPYRIGHT: 
- * Copyright (c) 1997-2003, International Business Machines Corporation and
+ * Copyright (c) 1997-2010, International Business Machines Corporation and
  * others. All Rights Reserved.
  ********************************************************************/
 
@@ -27,9 +27,9 @@ CollationFrenchTest::CollationFrenchTest()
 : myCollation(0)
 {
     UErrorCode status = U_ZERO_ERROR;
-    myCollation = Collator::createInstance(Locale::getFrance(), status);
+    myCollation = Collator::createInstance(Locale::getCanadaFrench(), status);
     if(!myCollation || U_FAILURE(status)) {
-        errln(__FILE__ "failed to create! err " + UnicodeString(u_errorName(status)));
+        errcheckln(status, __FILE__ "failed to create! err " + UnicodeString(u_errorName(status)));
         /* if it wasn't already: */
         delete myCollation;
         myCollation = NULL;
@@ -201,8 +201,8 @@ void CollationFrenchTest::runIndexedTest( int32_t index, UBool exec, const char*
     if (exec) logln("TestSuite CollationFrenchTest: ");
 
     if((!myCollation) && exec) {
-        errln(__FILE__ " cannot test - failed to create collator.");
-        name = "";
+        dataerrln(__FILE__ " cannot test - failed to create collator.");
+        name = "some test";
         return;
     }