Return-Path: Delivered-To: apmail-stdcxx-dev-archive@www.apache.org Received: (qmail 52881 invoked from network); 10 Sep 2008 14:15:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Sep 2008 14:15:05 -0000 Received: (qmail 2138 invoked by uid 500); 10 Sep 2008 14:14:59 -0000 Delivered-To: apmail-stdcxx-dev-archive@stdcxx.apache.org Received: (qmail 2124 invoked by uid 500); 10 Sep 2008 14:14:59 -0000 Mailing-List: contact dev-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list dev@stdcxx.apache.org Received: (qmail 2109 invoked by uid 99); 10 Sep 2008 14:14:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Sep 2008 07:14:59 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of msebor@gmail.com designates 209.85.198.238 as permitted sender) Received: from [209.85.198.238] (HELO rv-out-0506.google.com) (209.85.198.238) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Sep 2008 14:14:00 +0000 Received: by rv-out-0506.google.com with SMTP id g37so2334927rvb.23 for ; Wed, 10 Sep 2008 07:14:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :organization:user-agent:mime-version:to:subject:content-type :content-transfer-encoding:sender; bh=E3wXTQQIcMauOXyaybqI5bVyVSUoFukNFBWdBKOvlCM=; b=FyCq9SNeroMWISr/wlR+/386jAo/jaVMPk8MIrADxUypR2oCX9dQkrwIaKledgHO+h JgG0crxdHLlJHyL++312N1gZupPCpoQ8c84IGSZ6F9iQ2LBLtAVFCG9EdixcW2JcQJmc B8Lobh5BY1JqusDXAQtrWSArl7OPWX/PLngFg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:organization:user-agent:mime-version:to :subject:content-type:content-transfer-encoding:sender; b=jvnuIWdS0nej1eLWb7bTn5GX5MzTfcU/S5wFoMONbJQbrY25SPdFiTcwhefh+EKjUy jX369bRxmEYQubBPKOMRskxuDwk0gP8dFfWImmyhIDMVbTJPIe/GRJW5cvKxOq9IQoZc j2syUNcaTCyPkPrlXXA1ValMzWasCft9ZEfBA= Received: by 10.141.97.5 with SMTP id z5mr791368rvl.226.1221056071738; Wed, 10 Sep 2008 07:14:31 -0700 (PDT) Received: from bugsy.net ( [71.229.200.170]) by mx.google.com with ESMTPS id l31sm12189659rvb.2.2008.09.10.07.14.29 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 10 Sep 2008 07:14:30 -0700 (PDT) Message-ID: <48C7D644.3080203@roguewave.com> Date: Wed, 10 Sep 2008 08:14:28 -0600 From: Martin Sebor Organization: Rogue Wave Software, Inc. User-Agent: Thunderbird 2.0.0.16 (X11/20080723) MIME-Version: 1.0 To: dev@stdcxx.apache.org Subject: Re: svn commit: r693424 - /stdcxx/branches/4.2.x/tests/regress/18.c.limits.stdcxx-988.cpp Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: Martin Sebor X-Virus-Checked: Checked by ClamAV on apache.org faridz wrote: > > Author: faridz > Date: Tue Sep 9 03:35:59 2008 > New Revision: 693424 > > URL: http://svn.apache.org/viewvc?rev=693424&view=rev > Log: > 2008-09-09 Farid Zaripov > > * tests/regress/18.c.limits.stdcxx-988.cpp: Resolved compilation > error on MSVC and ICC/Windows. > > Modified: > stdcxx/branches/4.2.x/tests/regress/18.c.limits.stdcxx-988.cpp > > Modified: stdcxx/branches/4.2.x/tests/regress/18.c.limits.stdcxx-988.cpp > URL: > http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/tests/regress/18.c.limits.stdcxx-988.cpp?rev=693424&r1=693423&r2=693424&view=diff > ============================================================================== > --- stdcxx/branches/4.2.x/tests/regress/18.c.limits.stdcxx-988.cpp > (original) > +++ stdcxx/branches/4.2.x/tests/regress/18.c.limits.stdcxx-988.cpp Tue Sep > 9 03:35:59 2008 > @@ -138,14 +138,14 @@ > assert (SCHAR_MAX == +127); > assert (SHRT_MAX >= +32767); > > -#ifndef _RWSTD_EDG_ECCP > +#if !defined (_RWSTD_EDG_ECCP) && !defined (_MSC_VER) > > _RWSTD_EDG_ECCP should only be #defined when we're using the EDG eccp vanilla demo, but not when we're using a compiler that sits on top of the EDG front end such as Intel C++. If this condition evaluates to true we have a configuration problem... Martin > > // avoid exercising with the EDG eccp front end (strict mode) > assert (LONG_BIT >= 32); > assert (SSIZE_MAX >= _POSIX_SSIZE_MAX); > assert (WORD_BIT >= 32); > > -#endif // EDG eccp > +#endif // EDG eccp || MSVC || ICC/Windows > > assert (UCHAR_MAX >= 255); > assert (UINT_MAX >= 4294967295); > > > >