public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/67294] New: FAIL: 30_threads/*timed_mutex/unlock/2.cc (test for excess errors) on x86_64-apple-darwin14
@ 2015-08-20 13:55 dominiq at lps dot ens.fr
  2015-08-20 19:53 ` [Bug libstdc++/67294] " redi at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: dominiq at lps dot ens.fr @ 2015-08-20 13:55 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67294

            Bug ID: 67294
           Summary: FAIL: 30_threads/*timed_mutex/unlock/2.cc (test for
                    excess errors) on x86_64-apple-darwin14
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dominiq at lps dot ens.fr
                CC: iains at gcc dot gnu.org, redi at gcc dot gnu.org
  Target Milestone: ---
              Host: x86_64-apple-darwin14
            Target: x86_64-apple-darwin14
             Build: x86_64-apple-darwin14

On x86_64-apple-darwin14 I see the following failures

FAIL: 30_threads/recursive_timed_mutex/unlock/2.cc (test for excess errors)
UNRESOLVED: 30_threads/recursive_timed_mutex/unlock/2.cc compilation failed to
produce executable
FAIL: 30_threads/timed_mutex/unlock/2.cc (test for excess errors)
UNRESOLVED: 30_threads/timed_mutex/unlock/2.cc compilation failed to produce
executable

The tests have been introduced at revision r226863 and the failures are

/opt/gcc/work/libstdc++-v3/testsuite/30_threads/recursive_timed_mutex/unlock/2.cc:28:25:
error: 'recursive_timed_mutex' in namespace 'std' does not name a type
 using mutex_type = std::recursive_timed_mutex;
                         ^
/opt/gcc/work/libstdc++-v3/testsuite/30_threads/recursive_timed_mutex/unlock/2.cc:30:1:
error: 'mutex_type' does not name a type
 mutex_type m;
 ^
/opt/gcc/work/libstdc++-v3/testsuite/30_threads/recursive_timed_mutex/unlock/2.cc:
In function 'void f()':
/opt/gcc/work/libstdc++-v3/testsuite/30_threads/recursive_timed_mutex/unlock/2.cc:34:19:
error: 'mutex_type' was not declared in this scope
   std::lock_guard<mutex_type> l(m);
                   ^
/opt/gcc/work/libstdc++-v3/testsuite/30_threads/recursive_timed_mutex/unlock/2.cc:34:29:
error: template argument 1 is invalid
   std::lock_guard<mutex_type> l(m);
                             ^
/opt/gcc/work/libstdc++-v3/testsuite/30_threads/recursive_timed_mutex/unlock/2.cc:34:33:
error: 'm' was not declared in this scope
   std::lock_guard<mutex_type> l(m);
                                 ^


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug libstdc++/67294] FAIL: 30_threads/*timed_mutex/unlock/2.cc (test for excess errors) on x86_64-apple-darwin14
  2015-08-20 13:55 [Bug libstdc++/67294] New: FAIL: 30_threads/*timed_mutex/unlock/2.cc (test for excess errors) on x86_64-apple-darwin14 dominiq at lps dot ens.fr
@ 2015-08-20 19:53 ` redi at gcc dot gnu.org
  2015-08-20 20:36 ` redi at gcc dot gnu.org
  2015-08-20 20:42 ` redi at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: redi at gcc dot gnu.org @ 2015-08-20 19:53 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67294

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2015-08-20
           Assignee|unassigned at gcc dot gnu.org      |redi at gcc dot gnu.org
   Target Milestone|---                         |6.0
     Ever confirmed|0                           |1

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Sorry about that, I shouldn't be testing features that aren't supported on
Darwin. Fix coming up ...


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug libstdc++/67294] FAIL: 30_threads/*timed_mutex/unlock/2.cc (test for excess errors) on x86_64-apple-darwin14
  2015-08-20 13:55 [Bug libstdc++/67294] New: FAIL: 30_threads/*timed_mutex/unlock/2.cc (test for excess errors) on x86_64-apple-darwin14 dominiq at lps dot ens.fr
  2015-08-20 19:53 ` [Bug libstdc++/67294] " redi at gcc dot gnu.org
@ 2015-08-20 20:36 ` redi at gcc dot gnu.org
  2015-08-20 20:42 ` redi at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: redi at gcc dot gnu.org @ 2015-08-20 20:36 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67294

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Author: redi
Date: Thu Aug 20 20:36:19 2015
New Revision: 227043

URL: https://gcc.gnu.org/viewcvs?rev=227043&root=gcc&view=rev
Log:
libstdc++/67294 Don't run timed mutex tests on Darwin

        PR libstdc++/67294
        * testsuite/30_threads/recursive_timed_mutex/unlock/2.cc: Do not run
        on Darwin.
        * testsuite/30_threads/timed_mutex/unlock/2.cc: Likewise.

Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/testsuite/30_threads/recursive_timed_mutex/unlock/2.cc
    trunk/libstdc++-v3/testsuite/30_threads/timed_mutex/unlock/2.cc


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug libstdc++/67294] FAIL: 30_threads/*timed_mutex/unlock/2.cc (test for excess errors) on x86_64-apple-darwin14
  2015-08-20 13:55 [Bug libstdc++/67294] New: FAIL: 30_threads/*timed_mutex/unlock/2.cc (test for excess errors) on x86_64-apple-darwin14 dominiq at lps dot ens.fr
  2015-08-20 19:53 ` [Bug libstdc++/67294] " redi at gcc dot gnu.org
  2015-08-20 20:36 ` redi at gcc dot gnu.org
@ 2015-08-20 20:42 ` redi at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: redi at gcc dot gnu.org @ 2015-08-20 20:42 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67294

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Should be OK now.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-08-20 20:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-20 13:55 [Bug libstdc++/67294] New: FAIL: 30_threads/*timed_mutex/unlock/2.cc (test for excess errors) on x86_64-apple-darwin14 dominiq at lps dot ens.fr
2015-08-20 19:53 ` [Bug libstdc++/67294] " redi at gcc dot gnu.org
2015-08-20 20:36 ` redi at gcc dot gnu.org
2015-08-20 20:42 ` redi at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).