From stdcxx-dev-return-4064-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Wed Jul 25 04:34:13 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 45935 invoked from network); 25 Jul 2007 04:34:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Jul 2007 04:34:13 -0000 Received: (qmail 15665 invoked by uid 500); 25 Jul 2007 04:34:14 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 15653 invoked by uid 500); 25 Jul 2007 04:34:14 -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 15642 invoked by uid 99); 25 Jul 2007 04:34:14 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jul 2007 21:34:14 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of msebor@gmail.com designates 209.85.146.179 as permitted sender) Received: from [209.85.146.179] (HELO wa-out-1112.google.com) (209.85.146.179) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jul 2007 21:34:12 -0700 Received: by wa-out-1112.google.com with SMTP id n4so208104wag for ; Tue, 24 Jul 2007 21:33:52 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:organization:user-agent:mime-version:to:subject:content-type:content-transfer-encoding:sender; b=mbSl6cDSbuSd2NA3HTCE3QsGQdMmf2uSDBy7MrULAlWG4IJSy1I1X39x0Tw4USJ6I01cYvCzuB7N7vgOSBaL7+wtb8Jy4NrePyaSKjtDPVPcltA2iK/aFeSbz3teho5GxOdScuTj8tE3O56LtMzh7dU4TgW5pXvGklxVHXwFM34= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:organization:user-agent:mime-version:to:subject:content-type:content-transfer-encoding:sender; b=mgGAg/elksXY6am5DtDaQl32C3rnrL46HVGnF0dtOZURw5Ld5kup40nfL9MOj30cS28LYCsza8q0I3OM5Vv0FFRMzpB0WR9pBGMSE8kmo6eksC18kr1mlkLhzPARMY4yB8a1WhsTCrJvK2JBnml7nzUNGssBzyB56lHyMS+Xjdw= Received: by 10.114.88.1 with SMTP id l1mr246290wab.1185338032134; Tue, 24 Jul 2007 21:33:52 -0700 (PDT) Received: from ?192.168.1.104? ( [71.229.200.170]) by mx.google.com with ESMTPS id k35sm264163waf.2007.07.24.21.33.49 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 24 Jul 2007 21:33:49 -0700 (PDT) Message-ID: <46A6D2AC.3060704@roguewave.com> Date: Tue, 24 Jul 2007 22:33:48 -0600 From: Martin Sebor Organization: Rogue Wave Software User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.0.12) Gecko/20070719 Fedora/1.0.9-2.fc6 pango-text SeaMonkey/1.0.9 MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: atomic tests timing out on Windows 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 Looks like the two atomic tests, atomic_add.exe and atomic_xchg.exe, are timing out in some (optimized) MSVC builds on Windows. First, the timeout seems to be set to 180 seconds on Windows but 300 seconds on all other platforms. I think we should increase it on Windows to make it consistent. How do we go about adjusting the timeout? Second, I'm concerned that the atomic tests are timing out at all because when they run to completion they only take about 15 to 20 seconds (depending on the hardware). Farid, have you seen this in your manual builds? (The test are important because they exercise functionality that string depends on for thread safety). Here are a couple of builds with the timed-out tests: http://people.apache.org/~sebor/stdcxx/results/win_xp-2-x86-msvc-32b-8.0-12d-win32-558871-log.gz.txt http://people.apache.org/~sebor/stdcxx/results/win_xp-2-x86-msvc-7.1-12d-win32-558871-log.gz.txt Martin