Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 55351 invoked from network); 7 Jul 2009 18:34:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Jul 2009 18:34:34 -0000 Received: (qmail 5893 invoked by uid 500); 7 Jul 2009 18:34:44 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 5812 invoked by uid 500); 7 Jul 2009 18:34:44 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 5803 invoked by uid 99); 7 Jul 2009 18:34:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Jul 2009 18:34:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Jul 2009 18:34:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 679D423888A4; Tue, 7 Jul 2009 18:34:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r791935 - /apr/apr/trunk/test/testbase64.c Date: Tue, 07 Jul 2009 18:34:22 -0000 To: commits@apr.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090707183422.679D423888A4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Tue Jul 7 18:34:21 2009 New Revision: 791935 URL: http://svn.apache.org/viewvc?rev=791935&view=rev Log: Improve portability by dropping the testcase which uses Unicode escape sequences gcc complains but respects it; Sun Studio doesn't handle it properly (there may be related options) APR itself doesn't rely on these escape sequences anywhere, so it isn't worth trying to figure out how to safely use them. Modified: apr/apr/trunk/test/testbase64.c Modified: apr/apr/trunk/test/testbase64.c URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/testbase64.c?rev=791935&r1=791934&r2=791935&view=diff ============================================================================== --- apr/apr/trunk/test/testbase64.c (original) +++ apr/apr/trunk/test/testbase64.c Tue Jul 7 18:34:21 2009 @@ -36,7 +36,6 @@ {"Hello", "SGVsbG8="}, {"Hello World", "SGVsbG8gV29ybGQ="}, {"\xff\xff\xff\xff", "/////w=="}, - {"A\u00ea\u00f1\u00fcC", "QcOqw7HDvEM="}, }; static int num_base64 = sizeof(base64_tbl) / sizeof(base64_tbl[0]);