FAQ 3.5 How do I debug my Perl programs?

FAQ 3.5 How do I debug my Perl programs?

am 08.04.2005 18:03:01 von brian d foy

This message is one of several periodic postings to comp.lang.perl.misc
intended to make it easier for perl programmers to find answers to
common questions. The core of this message represents an excerpt
from the documentation provided with Perl.

------------------------------------------------------------ --------

3.5: How do I debug my Perl programs?

Have you tried "use warnings" or used "-w"? They enable warnings to
detect dubious practices.

Have you tried "use strict"? It prevents you from using symbolic
references, makes you predeclare any subroutines that you call as bare
words, and (probably most importantly) forces you to predeclare your
variables with "my", "our", or "use vars".

Did you check the return values of each and every system call? The
operating system (and thus Perl) tells you whether they worked, and if
not why.

open(FH, "> /etc/cantwrite")
or die "Couldn't write to /etc/cantwrite: $!\n";

Did you read perltrap? It's full of gotchas for old and new Perl
programmers and even has sections for those of you who are upgrading
from languages like *awk* and *C*.

Have you tried the Perl debugger, described in perldebug? You can step
through your program and see what it's doing and thus work out why what
it's doing isn't what it should be doing.



------------------------------------------------------------ --------

Documents such as this have been called "Answers to Frequently
Asked Questions" or FAQ for short. They represent an important
part of the Usenet tradition. They serve to reduce the volume of
redundant traffic on a news group by providing quality answers to
questions that keep coming up.

If you are some how irritated by seeing these postings you are free
to ignore them or add the sender to your killfile. If you find
errors or other problems with these postings please send corrections
or comments to the posting email address or to the maintainers as
directed in the perlfaq manual page.

Note that the FAQ text posted by this server may have been modified
from that distributed in the stable Perl release. It may have been
edited to reflect the additions, changes and corrections provided
by respondents, reviewers, and critics to previous postings of
these FAQ. Complete text of these FAQ are available on request.

The perlfaq manual page contains the following copyright notice.

AUTHOR AND COPYRIGHT

Copyright (c) 1997-2002 Tom Christiansen and Nathan
Torkington, and other contributors as noted. All rights
reserved.

This posting is provided in the hope that it will be useful but
does not represent a commitment or contract of any kind on the part
of the contributers, authors or their agents.

Re: FAQ 3.5 How do I debug my Perl programs?

am 08.04.2005 19:58:15 von Hendrik Maryns

PerlFAQ Server schreef:
>
> 3.5: How do I debug my Perl programs?
>
> Have you tried "use warnings" or used "-w"? They enable warnings to
> detect dubious practices.
>
> Have you tried "use strict"? It prevents you from using symbolic
> references, makes you predeclare any subroutines that you call as bare
> words, and (probably most importantly) forces you to predeclare your
> variables with "my", "our", or "use vars".
>
> Did you check the return values of each and every system call? The
> operating system (and thus Perl) tells you whether they worked, and if
> not why.
>
> open(FH, "> /etc/cantwrite")
> or die "Couldn't write to /etc/cantwrite: $!\n";

In the light of recent posts about the three-argument form of open,
shouldn't this now be
open(FH, ">", "/etc/cantwrite")
or die "Couldn't write to /etc/cantwrite: $!\n";

> Did you read perltrap? It's full of gotchas for old and new Perl
> programmers and even has sections for those of you who are upgrading
> from languages like *awk* and *C*.
>
> Have you tried the Perl debugger, described in perldebug? You can step
> through your program and see what it's doing and thus work out why what
> it's doing isn't what it should be doing.
>
>
>


--
Hendrik Maryns

Interesting websites:
www.lieverleven.be (I cooperate)
www.eu04.com European Referendum Campaign
aouw.org The Art Of Urban Warfare

Re: FAQ 3.5 How do I debug my Perl programs?

am 09.04.2005 02:59:56 von brian d foy

In article <1112983116.655937@seven.kulnet.kuleuven.ac.be>, Hendrik
Maryns wrote:

> PerlFAQ Server schreef:

> > 3.5: How do I debug my Perl programs?

> > open(FH, "> /etc/cantwrite")
> > or die "Couldn't write to /etc/cantwrite: $!\n";

> In the light of recent posts about the three-argument form of open,
> shouldn't this now be

> open(FH, ">", "/etc/cantwrite")
> or die "Couldn't write to /etc/cantwrite: $!\n";

It could be that, but it doesn't need to be. The answer discussing
checking return values, and I think it does that just fine.

I'll keep this on my list of things to look at, but if I'm going
to change it to the three argument form, I'll go through every
open() in perlfaq and make them use it.

--
brian d foy, comdog@panix.com
Subscribe to The Perl Review: http://www.theperlreview.com