Re: svn commit: r357718 - in /perl/Apache-Test/trunk/lib/Apache: TestConfig.pm TestRun.pm TestServer.pm

2005-12-19 Thread Stas Bekman
[EMAIL PROTECTED] wrote: Author: jorton Date: Mon Dec 19 08:20:37 2005 New Revision: 357718 URL: http://svn.apache.org/viewcvs?rev=357718&view=rev Log: - allow user-specified pidfile location; useful if testing with SELinux since the pidfile has different access control requirements to log files

Re: svn commit: r357762 - in /perl/Apache-Test/trunk: Changes lib/Apache/TestConfig.pm

2005-12-19 Thread Geoffrey Young
> +my $shebang = length $Config{perlpath} < 62 > +? "#!$Config{perlpath}\n" > +: < +#!/usr/bin/perl shouldn't this be something generic like #!perl instead of /usr/bin/perl? not even every unix installation has that. > +eval 'exec $Config{perlpath} -S \$0 \${1+"\$@"}

Re: svn commit: r357762 - in /perl/Apache-Test/trunk: Changes lib/Apache/TestConfig.pm

2005-12-19 Thread Stas Bekman
Geoffrey Young wrote: +my $shebang = length $Config{perlpath} < 62 +? "#!$Config{perlpath}\n" +: < shouldn't this be something generic like #!perl instead of /usr/bin/perl? not even every unix installation has that. +eval 'exec $Config{perlpath} -S \$0 \${1+"\$@"

Re: svn commit: r357762 - in /perl/Apache-Test/trunk: Changes lib/Apache/TestConfig.pm

2005-12-19 Thread Stas Bekman
Geoffrey Young wrote: It should probably be: $Config{'startperl'} % perl -V:startperl startperl='#!/usr/bin/perl'; What do you think? I just ran that on every box I have access to and it seems to be accurate. on some boxes it's pretty long, though, but not exceeding 62 characters. in re