You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2001/09/17 15:27:14 UTC

cvs commit: modperl-2.0/t/modules cgiupload.t

stas        01/09/17 06:27:14

  Modified:    t/apache read.t
               t/filter lc.t
               t/filter/TestFilter lc.pm
               t/modules cgiupload.t
  Log:
  using the Makefile file for tests instead of pod file, which is going to
  move into a different sub-tree.
  
  Revision  Changes    Path
  1.3       +1 -1      modperl-2.0/t/apache/read.t
  
  Index: read.t
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/apache/read.t,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- read.t	2001/08/16 17:24:57	1.2
  +++ read.t	2001/09/17 13:27:14	1.3
  @@ -15,7 +15,7 @@
   
   $socket->autoflush(1);
   
  -my $file = '../pod/modperl_2.0.pod';
  +my $file = '../Makefile';
   
   open(my $fh, $file) or die "open $file: $!";
   
  
  
  
  1.3       +1 -1      modperl-2.0/t/filter/lc.t
  
  Index: lc.t
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/filter/lc.t,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- lc.t	2001/04/04 04:37:01	1.2
  +++ lc.t	2001/09/17 13:27:14	1.3
  @@ -6,7 +6,7 @@
   
   plan tests => 1, \&have_lwp;
   
  -my $location = "/pod/modperl_2.0.pod";
  +my $location = "/top_dir/Makefile";
   
   my $str = GET_BODY $location;
   
  
  
  
  1.2       +2 -2      modperl-2.0/t/filter/TestFilter/lc.pm
  
  Index: lc.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/filter/TestFilter/lc.pm,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- lc.pm	2001/04/03 00:28:27	1.1
  +++ lc.pm	2001/09/17 13:27:14	1.2
  @@ -18,8 +18,8 @@
   1;
   __DATA__
   
  -<Location /pod>
  +<Location /top_dir>
     PerlOutputFilterHandler TestFilter::lc
   </Location>
   
  -Alias /pod @top_dir@/pod
  +Alias /top_dir @top_dir@
  
  
  
  1.3       +1 -1      modperl-2.0/t/modules/cgiupload.t
  
  Index: cgiupload.t
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/modules/cgiupload.t,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- cgiupload.t	2001/08/30 04:40:30	1.2
  +++ cgiupload.t	2001/09/17 13:27:14	1.3
  @@ -18,7 +18,7 @@
       }
   }
   
  -$filename ||= '../pod/modperl_2.0.pod';
  +$filename ||= '../Makefile';
   
   for (1,2) {
       my $str = UPLOAD_BODY $location, filename => $filename;