svn commit: r1936835 - in apr/apr-util/branches/1.6.x: . test

[email protected] Mon, 03 Aug 2026 14:39:34 -0000
Newsgroups gmane.comp.apache.apr.cvs
Message-ID <178576797490.1883461.1558541065999459496@svn03-he-fi>
Author: covener
Date: Mon Aug  3 14:39:34 2026
New Revision: 1936835

Log:
Merge r1936833 from apr trunk:

AIX native iconv won't do utf-7, check

Modified:
   apr/apr-util/branches/1.6.x/   (props changed)
   apr/apr-util/branches/1.6.x/test/testxlate.c

Modified: apr/apr-util/branches/1.6.x/test/testxlate.c
==============================================================================
--- apr/apr-util/branches/1.6.x/test/testxlate.c	Mon Aug  3 14:38:59 2026	(r1936834)
+++ apr/apr-util/branches/1.6.x/test/testxlate.c	Mon Aug  3 14:39:34 2026	(r1936835)
@@ -52,11 +52,11 @@ DECLARE_TEST_PARAMS(utf8, latin1, 0);
 DECLARE_TEST_PARAMS(latin1, utf8, 0);
 DECLARE_TEST_PARAMS(latin1, latin2, 1);
 DECLARE_TEST_PARAMS(latin2, latin1, 1);
-DECLARE_TEST_PARAMS(utf8, utf7, 0);
+DECLARE_TEST_PARAMS(utf8, utf7, 1);
 /* NOTE: The system libiconv on macOS has a bug in the UTF-7 to UTF-8
  *       conversion that leaves the trailing '-' in the translated
  *       string, causing this test to fail. */
-DECLARE_TEST_PARAMS(utf7, utf8, 0);
+DECLARE_TEST_PARAMS(utf7, utf8, 1);
 #undef DECLARE_TEST_PARAMS