public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/19781] testsuite_hooks.cc doesn't test for mkfifo
       [not found] <20050203164746.19781.jifl-bugzilla@jifvik.org>
@ 2005-05-05 16:49 ` bkoz at gcc dot gnu dot org
  2005-05-10  1:00 ` pcarlini at suse dot de
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2005-05-05 16:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bkoz at gcc dot gnu dot org  2005-05-05 16:49 -------

This indeed can be fixed. Instead of 

#if defined (_NEWLIB_VERSION) || defined (__MINGW32_VERSION)
    /* Newlib and MinGW32 do not have mkfifo.  */
    exit(0);
#else

do something like

#if _GLIBCXX_HAVE_MKFIFO
    mkfifo(filename, mode);
#else
    exit(0);
#endif

You'd do the check for mkfifo in GLIBCXX_CONFIGURE_TESTSUITE or something like
GLIBCXX_CHECK_SETRLIMIT_ancilliary.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19781


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

* [Bug libstdc++/19781] testsuite_hooks.cc doesn't test for mkfifo
       [not found] <20050203164746.19781.jifl-bugzilla@jifvik.org>
  2005-05-05 16:49 ` [Bug libstdc++/19781] testsuite_hooks.cc doesn't test for mkfifo bkoz at gcc dot gnu dot org
@ 2005-05-10  1:00 ` pcarlini at suse dot de
  2005-05-10  6:27 ` mmitchel at gcc dot gnu dot org
  2005-05-10 16:38 ` jifl-bugzilla at jifvik dot org
  3 siblings, 0 replies; 4+ messages in thread
From: pcarlini at suse dot de @ 2005-05-10  1:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2005-05-10 01:00 -------
Mark, your require-fifo/fork work has fixed this PR in 4_0/mainline and I'm
assigning it to you. Close or 3_4 too?!?

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |mmitchel at gcc dot gnu dot
                   |dot org                     |org
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-05-10 01:00:21
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19781


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

* [Bug libstdc++/19781] testsuite_hooks.cc doesn't test for mkfifo
       [not found] <20050203164746.19781.jifl-bugzilla@jifvik.org>
  2005-05-05 16:49 ` [Bug libstdc++/19781] testsuite_hooks.cc doesn't test for mkfifo bkoz at gcc dot gnu dot org
  2005-05-10  1:00 ` pcarlini at suse dot de
@ 2005-05-10  6:27 ` mmitchel at gcc dot gnu dot org
  2005-05-10 16:38 ` jifl-bugzilla at jifvik dot org
  3 siblings, 0 replies; 4+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-05-10  6:27 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mmitchel at gcc dot gnu dot org  2005-05-10 06:27 -------
Honestly, I would have loved to have fixed this in 3.4.4, but I'm out of time. 
I took a quick try at it, but there were lots of patch rejects.  It's certainly
doable, but I'm not going to get there.  So ...

... fixed in 4.0.1.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.1


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19781


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

* [Bug libstdc++/19781] testsuite_hooks.cc doesn't test for mkfifo
       [not found] <20050203164746.19781.jifl-bugzilla@jifvik.org>
                   ` (2 preceding siblings ...)
  2005-05-10  6:27 ` mmitchel at gcc dot gnu dot org
@ 2005-05-10 16:38 ` jifl-bugzilla at jifvik dot org
  3 siblings, 0 replies; 4+ messages in thread
From: jifl-bugzilla at jifvik dot org @ 2005-05-10 16:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From jifl-bugzilla at jifvik dot org  2005-05-10 16:38 -------
As the bug reporter, I'm fine with that, although I can't really change the bug
to "VERIFIED" since I haven't.



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19781


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

end of thread, other threads:[~2005-05-10 16:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20050203164746.19781.jifl-bugzilla@jifvik.org>
2005-05-05 16:49 ` [Bug libstdc++/19781] testsuite_hooks.cc doesn't test for mkfifo bkoz at gcc dot gnu dot org
2005-05-10  1:00 ` pcarlini at suse dot de
2005-05-10  6:27 ` mmitchel at gcc dot gnu dot org
2005-05-10 16:38 ` jifl-bugzilla at jifvik dot 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).