stas 2002/12/02 09:10:25
Modified: . Changes
perl-framework/Apache-Test/lib/Apache TestUtil.pm
Log:
revert the last change (and go to sleep already). The code was doing the
right thing already. the problem is with the base directory, looks like
some people get t/htdocs/ with wrong perms (umask problem?)
Revision Changes Path
1.72 +0 -3 modperl-2.0/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl-2.0/Changes,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- Changes 2 Dec 2002 17:01:49 -0000 1.71
+++ Changes 2 Dec 2002 17:10:25 -0000 1.72
@@ -10,9 +10,6 @@
=item 1.99_08-dev
-Apache::TestUtil::t_mkdir() now creates dirs which are
-writable/executable by the user who invokes it [Stas Bekman]
-
Move the custom mod_perl 2.0 configuration bits out of the
ModPerl::TestRun, where they don't belong, into a special config file
which is included at the very end of httpd.conf [Stas Bekman]
1.27 +1 -3
httpd-test/perl-framework/Apache-Test/lib/Apache/TestUtil.pm
Index: TestUtil.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestUtil.pm,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- TestUtil.pm 2 Dec 2002 17:01:50 -0000 1.26
+++ TestUtil.pm 2 Dec 2002 17:10:25 -0000 1.27
@@ -118,10 +118,8 @@
return if !defined($path) || -e $path;
my $full_path = $path;
- # + make the dir writable/executable by the user
- # + remember which dirs were created and should be cleaned up
+ # remember which dirs were created and should be cleaned up
while (1) {
- chmod 0755, $path;
$CLEAN{dirs}{$path} = 1;
$path = dirname $path;
last if -e $path;