Hello All,
I have the following perl program.
#!/opt/perl/bin/perl -w
require "test_init.pl" or die("Can't require test_init.pl");
require "configure.pl" or die("Can't require configure.pl");
require "common_functions.pl" or die("Can't require common_functions.pl");
In this, configure.pl and common_functions.pl needs test_init.pl file. The
above one is not working. I have the following error.
$ perl runtest.pl
configure.pl did not return a true value at runtest.pl line 4.
It works fine only after I included test_init.pl file in configure.pl and
common_functions.pl files.
Why it doesn't work?
Regs,
Durai.
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.665 / Virus Database: 428 - Release Date: 4/21/2004
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>