cvs commit: modperl-2.0/t/conf modperl_extra.pl

2001-12-22 Thread dougm

dougm   01/12/22 10:59:52

  Modified:t/conf   modperl_extra.pl
  Log:
  use ModPerl::Util for the CORE::GLOBAL::exit hook
  
  Revision  ChangesPath
  1.11  +2 -0  modperl-2.0/t/conf/modperl_extra.pl
  
  Index: modperl_extra.pl
  ===
  RCS file: /home/cvs/modperl-2.0/t/conf/modperl_extra.pl,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- modperl_extra.pl  2001/11/15 03:02:43 1.10
  +++ modperl_extra.pl  2001/12/22 18:59:52 1.11
  @@ -1,3 +1,5 @@
  +use ModPerl::Util (); #for CORE::GLOBAL::exit
  +
   use Apache::RequestRec ();
   use Apache::RequestIO ();
   use Apache::RequestUtil ();
  
  
  



cvs commit: modperl-2.0/t/conf modperl_extra.pl

2001-04-19 Thread dougm

dougm   01/04/19 13:20:41

  Modified:t/conf   modperl_extra.pl
  Log:
  compile common APR constants
  
  Revision  ChangesPath
  1.4   +1 -0  modperl-2.0/t/conf/modperl_extra.pl
  
  Index: modperl_extra.pl
  ===
  RCS file: /home/cvs/modperl-2.0/t/conf/modperl_extra.pl,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- modperl_extra.pl  2001/04/19 17:32:27 1.3
  +++ modperl_extra.pl  2001/04/19 20:20:37 1.4
  @@ -5,6 +5,7 @@
   use Apache::Connection ();
   
   use Apache::Const -compile => ':common';
  +use APR::Const -compile => ':common';
   
   use APR::Table ();
   
  
  
  



cvs commit: modperl-2.0/t/conf modperl_extra.pl

2001-04-12 Thread dougm

dougm   01/04/12 18:49:58

  Modified:t/conf   modperl_extra.pl
  Log:
  compile common constants at startup so we dont need to in each test module
  
  Revision  ChangesPath
  1.2   +2 -0  modperl-2.0/t/conf/modperl_extra.pl
  
  Index: modperl_extra.pl
  ===
  RCS file: /home/cvs/modperl-2.0/t/conf/modperl_extra.pl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- modperl_extra.pl  2001/04/02 09:10:18 1.1
  +++ modperl_extra.pl  2001/04/13 01:49:58 1.2
  @@ -4,4 +4,6 @@
   use Apache::Server ();
   use Apache::Connection ();
   
  +use Apache::Const -compile => ':common';
  +
   1;
  
  
  



cvs commit: modperl-2.0/t/conf modperl_extra.pl

2001-04-02 Thread dougm

dougm   01/04/02 02:10:18

  Added:   t/conf   modperl_extra.pl
  Log:
  test startup file
  
  Revision  ChangesPath
  1.1  modperl-2.0/t/conf/modperl_extra.pl
  
  Index: modperl_extra.pl
  ===
  use Apache::RequestRec ();
  use Apache::RequestIO ();
  
  use Apache::Server ();
  use Apache::Connection ();
  
  1;