X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Funiconv%2Ftest-u32-strconv-to-enc.c;h=a6230812fb2b30f7803005fb13f7d53424c14aff;hb=174af8a731d5ae17339dd5b69c0de0b7f24be594;hp=785536f04d656a720eeac35cecee018ea4459e62;hpb=789aa657e53ad5e6c116fad1c732b0478034fb1b;p=gnulib.git diff --git a/tests/uniconv/test-u32-strconv-to-enc.c b/tests/uniconv/test-u32-strconv-to-enc.c index 785536f04..a6230812f 100644 --- a/tests/uniconv/test-u32-strconv-to-enc.c +++ b/tests/uniconv/test-u32-strconv-to-enc.c @@ -1,10 +1,10 @@ /* Test of conversion from UTF-32 to legacy encodings. Copyright (C) 2007 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ /* Written by Bruno Haible , 2007. */ @@ -102,19 +101,6 @@ main () } } -# if 0 - /* Test conversion from UTF-32 to ISO-8859-1 with EINVAL. */ - for (h = 0; h < SIZEOF (handlers); h++) - { - enum iconv_ilseq_handler handler = handlers[h]; - static const uint32_t input[] = { 0x12345678, 0 }; - char *result = u32_strconv_to_encoding (input, "ISO-8859-1", handler); - ASSERT (result != NULL); - ASSERT (strcmp (result, "") == 0); - free (result); - } -# endif - #endif return 0;