Return-Path: Delivered-To: apmail-stdcxx-commits-archive@www.apache.org Received: (qmail 85501 invoked from network); 25 Mar 2008 15:17:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Mar 2008 15:17:03 -0000 Received: (qmail 28749 invoked by uid 500); 25 Mar 2008 15:17:02 -0000 Delivered-To: apmail-stdcxx-commits-archive@stdcxx.apache.org Received: (qmail 28733 invoked by uid 500); 25 Mar 2008 15:17:01 -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 28724 invoked by uid 99); 25 Mar 2008 15:17:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Mar 2008 08:17:01 -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, 25 Mar 2008 15:16:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 668BC1A9832; Tue, 25 Mar 2008 08:16:28 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r640851 - /stdcxx/trunk/tests/iostream/27.stringbuf.virtuals.cpp Date: Tue, 25 Mar 2008 15:16:27 -0000 To: commits@stdcxx.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080325151628.668BC1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Tue Mar 25 08:16:24 2008 New Revision: 640851 URL: http://svn.apache.org/viewvc?rev=640851&view=rev Log: 2008-03-25 Martin Sebor * tests/iostream/27.stringbuf.virtuals.cpp (test_seekoff): Added a link to LWG issue 563. Modified: stdcxx/trunk/tests/iostream/27.stringbuf.virtuals.cpp Modified: stdcxx/trunk/tests/iostream/27.stringbuf.virtuals.cpp URL: http://svn.apache.org/viewvc/stdcxx/trunk/tests/iostream/27.stringbuf.virtuals.cpp?rev=640851&r1=640850&r2=640851&view=diff ============================================================================== --- stdcxx/trunk/tests/iostream/27.stringbuf.virtuals.cpp (original) +++ stdcxx/trunk/tests/iostream/27.stringbuf.virtuals.cpp Tue Mar 25 08:16:24 2008 @@ -1045,8 +1045,8 @@ // the implemented behavior considers end to be the "high // mark" mentioned in DR 432 rather than epptr() - // FIXME: add a reference to the LWG issue that fixes this - // as soon as one has been opened + // see LWG issue 563: + // http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#563 TEST ("abc", out, 0, 0, end, out, 3, 0, 0, MAYBE_1); TEST ("abc", out, 0, 1, end, out, NPOS, 0, 0, MAYBE_1); TEST ("abc", out, 0, -1, end, out, 2, 0, 0, MAYBE_1);