]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/cintltst/utmstest.c
ICU-531.30.tar.gz
[apple/icu.git] / icuSources / test / cintltst / utmstest.c
index 069a80394794625562dc937103280b0e5561f901..9213077f8fa30026c811d572e1b25770885eb790 100644 (file)
@@ -1,6 +1,6 @@
 /*
  ****************************************************************************
- * Copyright (c) 1997-2007, International Business Machines Corporation and *
+ * Copyright (c) 1997-2013, International Business Machines Corporation and *
  * others. All Rights Reserved.                                             *
  ****************************************************************************
  */
@@ -198,6 +198,7 @@ static void TestFromInt64(void)
     UErrorCode status = U_ZERO_ERROR;
 
     result = utmscale_fromInt64(0, -1, &status);
+    (void)result;    /* Suppress set but not used warning. */
     if (status != U_ILLEGAL_ARGUMENT_ERROR) {
         log_err("utmscale_fromInt64(0, -1, status) did not set status to U_ILLEGAL_ARGUMENT_ERROR.\n");
     }
@@ -258,6 +259,7 @@ static void TestToInt64(void)
     UErrorCode status = U_ZERO_ERROR;
 
     result = utmscale_toInt64(0, -1, &status);
+    (void)result;    /* suppress set but not used warning. */
     if (status != U_ILLEGAL_ARGUMENT_ERROR) {
         log_err("utmscale_toInt64(0, -1, &status) did not generate U_ILLEGAL_ARGUMENT_ERROR.\n");
     }
@@ -455,7 +457,7 @@ TestDotNet() {
     cal = ucal_open(utc, -1, "", UCAL_GREGORIAN, &errorCode);
     ucal_setGregorianChange(cal, -1000000 * (dayMillis * (UDate)1), &errorCode);
     if(U_FAILURE(errorCode)) {
-        log_err("ucal_open(UTC/proleptic Gregorian) failed: %s\n", u_errorName(errorCode));
+        log_data_err("ucal_open(UTC/proleptic Gregorian) failed: %s - (Are you missing data?)\n", u_errorName(errorCode));
         ucal_close(cal);
         return;
     }