From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2271 invoked by alias); 24 Nov 2011 17:55:09 -0000 Received: (qmail 2257 invoked by uid 22791); 24 Nov 2011 17:55:07 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 24 Nov 2011 17:54:54 +0000 From: "ro at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/51296] New: Several 30_threads tests FAIL on Tru64 UNIX Date: Thu, 24 Nov 2011 18:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ro at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2011-11/txt/msg02428.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51296 Bug #: 51296 Summary: Several 30_threads tests FAIL on Tru64 UNIX Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ AssignedTo: unassigned@gcc.gnu.org ReportedBy: ro@gcc.gnu.org CC: redi@gcc.gnu.org Host: alpha-dec-osf5.1b Target: alpha-dec-osf5.1b Build: alpha-dec-osf5.1b Between 20111021 (r180287) and 20111128 (r180617), several 30_threads tests started to FAIL on Tru64 UNIX: FAIL: 30_threads/async/async.cc execution test terminate called after throwing an instance of 'std::system_error' what(): Invalid argument FAIL: 30_threads/condition_variable/members/1.cc execution test Assertion failed: false, file /vol/gcc/src/hg/trunk/local/libstdc++-v3/testsuite/30_threads/condition_variable/members/1.cc, line 49 FAIL: 30_threads/condition_variable/members/2.cc execution test Assertion failed: false, file /vol/gcc/src/hg/trunk/local/libstdc++-v3/testsuite/30_threads/condition_variable/members/2.cc, line 49 FAIL: 30_threads/condition_variable_any/members/1.cc execution test FAIL: 30_threads/condition_variable_any/members/2.cc execution test FAIL: 30_threads/future/cons/constexpr.cc scan-assembler-not _ZNSt6futureIvEC2Ev FAIL: 30_threads/future/cons/constexpr.cc scan-assembler-not _ZNSt6futureIiEC2Ev FAIL: 30_threads/lock/1.cc execution test FAIL: 30_threads/lock/3.cc execution test FAIL: 30_threads/lock/4.cc execution test FAIL: 30_threads/mutex/lock/1.cc execution test FAIL: 30_threads/mutex/try_lock/1.cc execution test FAIL: 30_threads/mutex/try_lock/2.cc execution test FAIL: 30_threads/shared_future/cons/constexpr.cc scan-assembler-not _ZNSt13shared_futureIvEC2Ev FAIL: 30_threads/shared_future/cons/constexpr.cc scan-assembler-not _ZNSt13shared_futureIiEC2Ev FAIL: 30_threads/thread/native_handle/typesizes.cc execution test FAIL: 30_threads/try_lock/1.cc execution test FAIL: 30_threads/try_lock/2.cc execution test FAIL: 30_threads/try_lock/3.cc execution test FAIL: 30_threads/try_lock/4.cc execution test FAIL: 30_threads/unique_lock/cons/2.cc execution test FAIL: 30_threads/unique_lock/cons/4.cc execution test FAIL: 30_threads/unique_lock/locking/1.cc execution test FAIL: 30_threads/unique_lock/locking/2.cc execution test FAIL: 30_threads/unique_lock/modifiers/1.cc execution test FAIL: 30_threads/unique_lock/modifiers/2.cc execution test This may be due to this change: 2011-10-22 Jonathan Wakely PR libstdc++/50196 * acinclude.m4 (GLIBCXX_HAS_GTHREADS): Don't depend on _POSIX_TIMEOUTS. * configure: Regenerate. * include/std/mutex (timed_mutex, recursive_timed_mutex): Define On this platform, _POSIX_TIMEOUTS is missing in . I find that those tests are UNSUPPORTED on the 4.6 branch. Rainer