Use encoding names which may work better on Solaris. (#340434, Alessandro
authorMatthias Clasen <mclasen@redhat.com>
Mon, 8 May 2006 16:58:24 +0000 (16:58 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 8 May 2006 16:58:24 +0000 (16:58 +0000)
2006-05-08  Matthias Clasen  <mclasen@redhat.com>

* tests/convert-test.c (test_one_half): Use encoding names which
may work better on Solaris.  (#340434, Alessandro Vesely)

ChangeLog
ChangeLog.pre-2-12
tests/convert-test.c

index 3f89f43..96e71b2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-05-08  Matthias Clasen  <mclasen@redhat.com>
 
+       * tests/convert-test.c (test_one_half): Use encoding names which 
+       may work better on Solaris.  (#340434, Alessandro Vesely)
+
        * tests/keyfile-test.c (test_number): Add some tests for
        invalid floating point numbers.
 
index 3f89f43..96e71b2 100644 (file)
@@ -1,5 +1,8 @@
 2006-05-08  Matthias Clasen  <mclasen@redhat.com>
 
+       * tests/convert-test.c (test_one_half): Use encoding names which 
+       may work better on Solaris.  (#340434, Alessandro Vesely)
+
        * tests/keyfile-test.c (test_number): Add some tests for
        invalid floating point numbers.
 
index a24a9e2..3ea3a66 100644 (file)
@@ -63,7 +63,7 @@ test_one_half (void)
   GError *error = NULL;  
 
   out = g_convert (in, -1, 
-                  "ISO8859-1", "UTF-8",
+                  "ISO-8859-1", "UTF-8",
                   &bytes_read, &bytes_written,
                   &error);
 
@@ -74,7 +74,7 @@ test_one_half (void)
   g_free (out);
 
   out = g_convert (in, -1, 
-                  "ISO8859-15", "UTF-8",
+                  "ISO-8859-15", "UTF-8",
                   &bytes_read, &bytes_written,
                   &error);