public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/25728]  New: File descriptor leak in
@ 2006-01-09 19:54 hjl at lucon dot org
  2006-01-09 19:59 ` [Bug testsuite/25728] File descriptor leak in lib/gcov.exp hjl at lucon dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: hjl at lucon dot org @ 2006-01-09 19:54 UTC (permalink / raw)
  To: gcc-bugs

verify-lines in gcc/testsuite/lib/gcov.exp has

proc verify-lines { testcase file } {
    #send_user "verify-lines\n"
    set failed 0
    set fd [open $file r]
    while { [gets $fd line] >= 0 } {
        if [regexp "^ *(\[^:]*): *(\[0-9\]+):.*count\\((\[0-9\]+)\\)" \
                "$line" all is n shouldbe] {
            if { $is == "" } {
                fail "$n:no data available for this line"
                incr failed
            } elseif { $is != $shouldbe } {
                fail "$n:is $is:should be $shouldbe"
                incr failed
            }
        }
    }
    return $failed
}

There is no "close $fd", which leads to file descriptor leak.


-- 
           Summary: File descriptor leak in
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: hjl at lucon dot org


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



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

* [Bug testsuite/25728] File descriptor leak in lib/gcov.exp
  2006-01-09 19:54 [Bug testsuite/25728] New: File descriptor leak in hjl at lucon dot org
@ 2006-01-09 19:59 ` hjl at lucon dot org
  2006-01-12  1:29 ` hjl at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: hjl at lucon dot org @ 2006-01-09 19:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from hjl at lucon dot org  2006-01-09 19:59 -------
A patch is posted at

http://gcc.gnu.org/ml/gcc-patches/2006-01/msg00495.html


-- 

hjl at lucon dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch
            Summary|File descriptor leak in     |File descriptor leak in
                   |                            |lib/gcov.exp


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



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

* [Bug testsuite/25728] File descriptor leak in lib/gcov.exp
  2006-01-09 19:54 [Bug testsuite/25728] New: File descriptor leak in hjl at lucon dot org
  2006-01-09 19:59 ` [Bug testsuite/25728] File descriptor leak in lib/gcov.exp hjl at lucon dot org
@ 2006-01-12  1:29 ` hjl at gcc dot gnu dot org
  2006-01-12  1:35 ` hjl at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: hjl at gcc dot gnu dot org @ 2006-01-12  1:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from hjl at gcc dot gnu dot org  2006-01-12 01:29 -------
Subject: Bug 25728

Author: hjl
Date: Thu Jan 12 01:29:07 2006
New Revision: 109627

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=109627
Log:
2006-01-11  H.J. Lu  <hongjiu.lu@intel.com>

        PR testsuite/25728
        * lib/gcov.exp (verify-lines): Add "close $fd".

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/lib/gcov.exp


-- 


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


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

* [Bug testsuite/25728] File descriptor leak in lib/gcov.exp
  2006-01-09 19:54 [Bug testsuite/25728] New: File descriptor leak in hjl at lucon dot org
  2006-01-09 19:59 ` [Bug testsuite/25728] File descriptor leak in lib/gcov.exp hjl at lucon dot org
  2006-01-12  1:29 ` hjl at gcc dot gnu dot org
@ 2006-01-12  1:35 ` hjl at gcc dot gnu dot org
  2006-01-12  1:40 ` hjl at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: hjl at gcc dot gnu dot org @ 2006-01-12  1:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from hjl at gcc dot gnu dot org  2006-01-12 01:35 -------
Subject: Bug 25728

Author: hjl
Date: Thu Jan 12 01:35:21 2006
New Revision: 109628

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=109628
Log:
2006-01-11  H.J. Lu  <hongjiu.lu@intel.com>

        PR testsuite/25728
        * lib/gcov.exp (verify-lines): Add "close $fd".

Modified:
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog
    branches/gcc-4_1-branch/gcc/testsuite/lib/gcov.exp


-- 


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


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

* [Bug testsuite/25728] File descriptor leak in lib/gcov.exp
  2006-01-09 19:54 [Bug testsuite/25728] New: File descriptor leak in hjl at lucon dot org
                   ` (2 preceding siblings ...)
  2006-01-12  1:35 ` hjl at gcc dot gnu dot org
@ 2006-01-12  1:40 ` hjl at gcc dot gnu dot org
  2006-01-12  1:45 ` hjl at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: hjl at gcc dot gnu dot org @ 2006-01-12  1:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from hjl at gcc dot gnu dot org  2006-01-12 01:40 -------
Subject: Bug 25728

Author: hjl
Date: Thu Jan 12 01:40:48 2006
New Revision: 109631

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=109631
Log:
2006-01-11  H.J. Lu  <hongjiu.lu@intel.com>

        PR testsuite/25728
        * lib/gcov.exp (verify-lines): Add "close $fd".

Modified:
    branches/gcc-4_0-branch/gcc/testsuite/ChangeLog
    branches/gcc-4_0-branch/gcc/testsuite/lib/gcov.exp


-- 


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


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

* [Bug testsuite/25728] File descriptor leak in lib/gcov.exp
  2006-01-09 19:54 [Bug testsuite/25728] New: File descriptor leak in hjl at lucon dot org
                   ` (3 preceding siblings ...)
  2006-01-12  1:40 ` hjl at gcc dot gnu dot org
@ 2006-01-12  1:45 ` hjl at gcc dot gnu dot org
  2006-01-12  1:47 ` hjl at lucon dot org
  2006-01-28 21:20 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: hjl at gcc dot gnu dot org @ 2006-01-12  1:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from hjl at gcc dot gnu dot org  2006-01-12 01:45 -------
Subject: Bug 25728

Author: hjl
Date: Thu Jan 12 01:45:54 2006
New Revision: 109632

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=109632
Log:
2006-01-11  H.J. Lu  <hongjiu.lu@intel.com>

        PR testsuite/25728
        * lib/gcov.exp (verify-lines): Add "close $fd".

Modified:
    branches/gcc-3_4-branch/gcc/testsuite/ChangeLog
    branches/gcc-3_4-branch/gcc/testsuite/lib/gcov.exp


-- 


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


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

* [Bug testsuite/25728] File descriptor leak in lib/gcov.exp
  2006-01-09 19:54 [Bug testsuite/25728] New: File descriptor leak in hjl at lucon dot org
                   ` (4 preceding siblings ...)
  2006-01-12  1:45 ` hjl at gcc dot gnu dot org
@ 2006-01-12  1:47 ` hjl at lucon dot org
  2006-01-28 21:20 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: hjl at lucon dot org @ 2006-01-12  1:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from hjl at lucon dot org  2006-01-12 01:47 -------
Fixed.


-- 

hjl at lucon dot org changed:

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


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


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

* [Bug testsuite/25728] File descriptor leak in lib/gcov.exp
  2006-01-09 19:54 [Bug testsuite/25728] New: File descriptor leak in hjl at lucon dot org
                   ` (5 preceding siblings ...)
  2006-01-12  1:47 ` hjl at lucon dot org
@ 2006-01-28 21:20 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-28 21:20 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.0.3 3.4.6 4.1.0 4.2.0
   Target Milestone|---                         |3.4.6


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


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

end of thread, other threads:[~2006-01-28 21:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-09 19:54 [Bug testsuite/25728] New: File descriptor leak in hjl at lucon dot org
2006-01-09 19:59 ` [Bug testsuite/25728] File descriptor leak in lib/gcov.exp hjl at lucon dot org
2006-01-12  1:29 ` hjl at gcc dot gnu dot org
2006-01-12  1:35 ` hjl at gcc dot gnu dot org
2006-01-12  1:40 ` hjl at gcc dot gnu dot org
2006-01-12  1:45 ` hjl at gcc dot gnu dot org
2006-01-12  1:47 ` hjl at lucon dot org
2006-01-28 21:20 ` pinskia at gcc dot gnu 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).