Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 27813 invoked from network); 30 Jul 2007 18:08:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Jul 2007 18:08:29 -0000 Received: (qmail 57422 invoked by uid 500); 30 Jul 2007 18:08:29 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 57407 invoked by uid 500); 30 Jul 2007 18:08:29 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 57396 invoked by uid 99); 30 Jul 2007 18:08:28 -0000 Received: from Unknown (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jul 2007 11:08:28 -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 Farid_Zaripov@epam.com designates 217.21.63.3 as permitted sender) Received: from [217.21.63.3] (HELO EPMSA009.epam.com) (217.21.63.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jul 2007 18:08:23 +0000 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: 18.exception.cpp test on Cygwin Date: Mon, 30 Jul 2007 21:07:59 +0300 Message-ID: <7BDB2168BEAEF14C98F1901FD2DE6438BB0E9C@epmsa009.minsk.epam.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: 18.exception.cpp test on Cygwin Thread-Index: AcfS1JAgD28A1x+JQs6a30y1L8hppg== From: "Farid Zaripov" To: X-Virus-Checked: Checked by ClamAV on apache.org The 18.exception.cpp test fails to compile on gcc 3.4.4/Cygwin. ----------- 18.exception.cpp: In function `void test_runtime()': 18.exception.cpp:929: error: `setjmp' is not a member of `std' 18.exception.cpp: In function `int run_test(int, char**)': 18.exception.cpp:1023: error: `setjmp' is not a member of `std' ----------- The reason is that setjmp macro is not #defined in /usr/include/setjmp.h and setjmp() function not introduced in namespace std:: in include/ansi/csetjmp. 18.exception.cpp file (line 66): --------- # ifdef setjmp # define RW_SETJMP(env) setjmp (env) # else # define RW_SETJMP(env) std::setjmp (env) # endif --------- Farid.