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 do...@apache.org on 2001/10/20 02:37:28 UTC

cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestHarness.pm

dougm       01/10/19 17:37:28

  Modified:    perl-framework/Apache-Test/lib/Apache TestHarness.pm
  Log:
  fix pattern match so all.t scripts are run on non-unix platforms
  
  Revision  Changes    Path
  1.11      +1 -1      httpd-test/perl-framework/Apache-Test/lib/Apache/TestHarness.pm
  
  Index: TestHarness.pm
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestHarness.pm,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- TestHarness.pm	2001/10/16 20:30:57	1.10
  +++ TestHarness.pm	2001/10/20 00:37:28	1.11
  @@ -81,7 +81,7 @@
   
       for (@tests) {
           my $dir = dirname $_;
  -        if (m:/all\.t$:) {
  +        if (m:\Wall\.t$:) {
               unless ($self->run_t($_)) {
                   $skip_dirs{$dir} = 1;
                   @new_tests = grep { not $skip_dirs{dirname $_} } @new_tests;