From commits-return-2783-apmail-stdcxx-commits-archive=stdcxx.apache.org@stdcxx.apache.org Tue Apr 22 01:43:08 2008 Return-Path: Delivered-To: apmail-stdcxx-commits-archive@www.apache.org Received: (qmail 79066 invoked from network); 22 Apr 2008 01:43:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Apr 2008 01:43:07 -0000 Received: (qmail 39175 invoked by uid 500); 22 Apr 2008 01:43:09 -0000 Delivered-To: apmail-stdcxx-commits-archive@stdcxx.apache.org Received: (qmail 39160 invoked by uid 500); 22 Apr 2008 01:43:09 -0000 Mailing-List: contact commits-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 commits@stdcxx.apache.org Received: (qmail 39151 invoked by uid 99); 22 Apr 2008 01:43:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 18:43:09 -0700 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.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 01:42:13 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D4D111A9832; Mon, 21 Apr 2008 18:42:33 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r650352 - /stdcxx/trunk/tests/regress/27.istream.get.stdcxx-60.cpp Date: Tue, 22 Apr 2008 01:42:33 -0000 To: commits@stdcxx.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080422014233.D4D111A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Mon Apr 21 18:42:31 2008 New Revision: 650352 URL: http://svn.apache.org/viewvc?rev=650352&view=rev Log: 2008-04-21 Martin Sebor * tests/regress/27.istream.get.stdcxx-60.cpp: Added a regression test for STDCXX-60. Added: stdcxx/trunk/tests/regress/27.istream.get.stdcxx-60.cpp (with props) Added: stdcxx/trunk/tests/regress/27.istream.get.stdcxx-60.cpp URL: http://svn.apache.org/viewvc/stdcxx/trunk/tests/regress/27.istream.get.stdcxx-60.cpp?rev=650352&view=auto ============================================================================== --- stdcxx/trunk/tests/regress/27.istream.get.stdcxx-60.cpp (added) +++ stdcxx/trunk/tests/regress/27.istream.get.stdcxx-60.cpp Mon Apr 21 18:42:31 2008 @@ -0,0 +1,57 @@ +/************************************************************************ + * + * 27.istream.get.stdcxx-60.cpp - regression test for STDCXX-60 + * + * http://issues.apache.org/jira/browse/STDCXX-60 + * + * $Id$ + * + *************************************************************************** + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied. See the License for the specific language governing + * permissions and limitations under the License. + * + **************************************************************************/ + +#include +#include + +int main () +{ + // According to LWG issue 243 + // http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#243: + // + // "...if the sentry constructor [of an unformatted input function] + // exits by throwing an exception or if the sentry object returns + // false, when converted to a value of type bool, the function + // returns without attempting to obtain any input. In either case + // [...] unformatted input functions taking a character array of + // non-zero size as an argument shall also store a null character + // (using charT()) in the first location of the array." + + std::istringstream strm; + + strm.setstate (strm.failbit); + + char s [3] = { 'x', 'y', 'z' }; + strm.get (s, 2); + + assert ('\0' == s [0]); + assert ('y' == s [1]); + assert ('z' == s [2]); + + return 0; +} Propchange: stdcxx/trunk/tests/regress/27.istream.get.stdcxx-60.cpp ------------------------------------------------------------------------------ svn:eol-style = native Propchange: stdcxx/trunk/tests/regress/27.istream.get.stdcxx-60.cpp ------------------------------------------------------------------------------ svn:keywords = Id