You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by st...@apache.org on 2003/11/05 11:07:39 UTC

cvs commit: httpd-test/perl-framework/Apache-Test/t TEST.PL

stas        2003/11/05 02:07:39

  Modified:    perl-framework/Apache-Test/t TEST.PL
  Log:
  make A-T eat its own food, print the banner:
  "To report problems please refer to the SUPPORT file"
  on A-T's 'make test' failure
  
  Revision  Changes    Path
  1.5       +11 -0     httpd-test/perl-framework/Apache-Test/t/TEST.PL
  
  Index: TEST.PL
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/t/TEST.PL,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -u -r1.4 -r1.5
  --- TEST.PL	29 Apr 2003 06:37:47 -0000	1.4
  +++ TEST.PL	5 Nov 2003 10:07:39 -0000	1.5
  @@ -28,4 +28,15 @@
       return $self->SUPER::new_test_config;
   }
   
  +sub bug_report {
  +    my $self = shift;
  +
  +    print <<EOI;
  ++-----------------------------------------------------+
  +| To report problems please refer to the SUPPORT file |
  ++-----------------------------------------------------+
  +EOI
  +}
  +
   MyTest->new->run(@ARGV);
  +