Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: Perl 5.8.8 installation issue, Cwd test hanging, solaris 2.9

by kwaping (Priest)
on Jan 23, 2007 at 20:31 UTC ( #596150=note: print w/replies, xml ) Need Help??


in reply to Re: Perl 5.8.8 installation issue, Cwd test hanging, solaris 2.9
in thread Perl 5.8.8 installation issue, Cwd test hanging, solaris 2.9

Thanks for the debugger pointer. Using it, I discovered that the problem lies on line 208 of cwd.t.
# this is the line I removed # ($file) = grep {-f $_ and not -l $_} map File::Spec->catfile($roo +t, $_), readdir FH; # and replaced with this foreach my $x (readdir(FH)) { my $y = File::Spec->catfile($root, $x); if (-f $y && ! -l $y) { $file = $y; last; } }
It appears there was somthing in my root directory that wasn't to the code's liking, so I just took the first successful hit of the file test operators and bailed out of the loop. I'm fairly certain I didn't compromise the accuracy of the test, but please let me know if you see a problem with what I did.

---
It's all fine and dandy until someone has to look at the code.

Replies are listed 'Best First'.
Re^3: Perl 5.8.8 installation issue, Cwd test hanging, solaris 2.9
by diotalevi (Canon) on Jan 23, 2007 at 21:14 UTC

    Perhaps you have a stale NFS mount or something unreadable on your disk.

    ⠤⠤ ⠙⠊⠕⠞⠁⠇⠑⠧⠊

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://596150]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others studying the Monastery: (3)
As of 2023-03-24 06:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (60 votes). Check out past polls.

    Notices?