geoff       2004/09/15 16:55:31

  Modified:    perl-framework/Apache-Test Changes
               perl-framework/Apache-Test/lib/Apache TestMM.pm
  Log:
  run_tests make target no longer invokes t/TEST -clean, making it
  possible to save a few development cycles when a full cleanup is
  not required between runs.
  
  Revision  Changes    Path
  1.165     +4 -0      httpd-test/perl-framework/Apache-Test/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
  retrieving revision 1.164
  retrieving revision 1.165
  diff -u -r1.164 -r1.165
  --- Changes   14 Sep 2004 19:42:20 -0000      1.164
  +++ Changes   15 Sep 2004 23:55:31 -0000      1.165
  @@ -8,6 +8,10 @@
   
   =item 1.14-dev
   
  +run_tests make target no longer invokes t/TEST -clean, making it
  +possible to save a few development cycles when a full cleanup is
  +not required between runs.  [Geoffrey Young] 
  +
   Apache::TestSmoke imrovements: [Stas]
    o the command line option -iterations=N should always be respected
      (previously it was internally overriden for order!='random').
  
  
  
  1.38      +2 -2      
httpd-test/perl-framework/Apache-Test/lib/Apache/TestMM.pm
  
  Index: TestMM.pm
  ===================================================================
  RCS file: 
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestMM.pm,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- TestMM.pm 5 Sep 2004 00:11:30 -0000       1.37
  +++ TestMM.pm 15 Sep 2004 23:55:31 -0000      1.38
  @@ -65,12 +65,12 @@
        $(FULLPERL) -I$(INST_ARCHLIB) -I$(INST_LIB) \
        t/TEST $(APACHE_TEST_EXTRA_ARGS) -clean
   
  -run_tests : test_clean
  +run_tests :
        $(PASSENV) \
        $(FULLPERL) -I$(INST_ARCHLIB) -I$(INST_LIB) \
        t/TEST $(APACHE_TEST_EXTRA_ARGS) -bugreport -verbose=$(TEST_VERBOSE) 
$(TEST_FILES)
   
  -test :: pure_all run_tests test_clean
  +test :: pure_all test_clean run_tests
   
   cmodules:
        cd c-modules && $(MAKE) all
  
  
  

Reply via email to