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

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).