[Catalyst-commits] r8750 - Catalyst-Runtime/5.80/trunk/t

andyg at dev.catalyst.perl.org andyg at dev.catalyst.perl.org
Fri Dec 5 16:00:08 GMT 2008


Author: andyg
Date: 2008-12-05 16:00:08 +0000 (Fri, 05 Dec 2008)
New Revision: 8750

Modified:
   Catalyst-Runtime/5.80/trunk/t/optional_apache-cgi-rewrite.pl
   Catalyst-Runtime/5.80/trunk/t/optional_apache-cgi.pl
   Catalyst-Runtime/5.80/trunk/t/optional_apache-fastcgi-non-root.pl
   Catalyst-Runtime/5.80/trunk/t/optional_apache-fastcgi.pl
   Catalyst-Runtime/5.80/trunk/t/optional_http-server.t
   Catalyst-Runtime/5.80/trunk/t/optional_lighttpd-fastcgi-non-root.t
   Catalyst-Runtime/5.80/trunk/t/optional_lighttpd-fastcgi.t
Log:
Fix optional tests to run the live tests in the aggregate dir

Modified: Catalyst-Runtime/5.80/trunk/t/optional_apache-cgi-rewrite.pl
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/optional_apache-cgi-rewrite.pl	2008-12-05 15:54:58 UTC (rev 8749)
+++ Catalyst-Runtime/5.80/trunk/t/optional_apache-cgi-rewrite.pl	2008-12-05 16:00:08 UTC (rev 8750)
@@ -37,7 +37,7 @@
     die "ERROR: Please run test from the Catalyst-Runtime directory\n";
 }
 
-push @ARGV, glob( 't/live_*' );
+push @ARGV, glob( 't/aggregate/live_*' );
 
 Apache::TestRun->new->run(@ARGV);
 

Modified: Catalyst-Runtime/5.80/trunk/t/optional_apache-cgi.pl
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/optional_apache-cgi.pl	2008-12-05 15:54:58 UTC (rev 8749)
+++ Catalyst-Runtime/5.80/trunk/t/optional_apache-cgi.pl	2008-12-05 16:00:08 UTC (rev 8750)
@@ -37,7 +37,7 @@
     die "ERROR: Please run test from the Catalyst-Runtime directory\n";
 }
 
-push @ARGV, glob( 't/live_*' );
+push @ARGV, glob( 't/aggregate/live_*' );
 
 Apache::TestRun->new->run(@ARGV);
 

Modified: Catalyst-Runtime/5.80/trunk/t/optional_apache-fastcgi-non-root.pl
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/optional_apache-fastcgi-non-root.pl	2008-12-05 15:54:58 UTC (rev 8749)
+++ Catalyst-Runtime/5.80/trunk/t/optional_apache-fastcgi-non-root.pl	2008-12-05 16:00:08 UTC (rev 8750)
@@ -37,7 +37,7 @@
     die "ERROR: Please run test from the Catalyst-Runtime directory\n";
 }
 
-push @ARGV, glob( 't/live_*' );
+push @ARGV, glob( 't/aggregate/live_*' );
 
 Apache::TestRun->new->run(@ARGV);
 

Modified: Catalyst-Runtime/5.80/trunk/t/optional_apache-fastcgi.pl
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/optional_apache-fastcgi.pl	2008-12-05 15:54:58 UTC (rev 8749)
+++ Catalyst-Runtime/5.80/trunk/t/optional_apache-fastcgi.pl	2008-12-05 16:00:08 UTC (rev 8750)
@@ -37,7 +37,7 @@
     die "ERROR: Please run test from the Catalyst-Runtime directory\n";
 }
 
-push @ARGV, glob( 't/live_*' );
+push @ARGV, glob( 't/aggregate/live_*' );
 
 Apache::TestRun->new->run(@ARGV);
 

Modified: Catalyst-Runtime/5.80/trunk/t/optional_http-server.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/optional_http-server.t	2008-12-05 15:54:58 UTC (rev 8749)
+++ Catalyst-Runtime/5.80/trunk/t/optional_http-server.t	2008-12-05 16:00:08 UTC (rev 8750)
@@ -53,7 +53,7 @@
     $return = system( "$^X -Ilib/ $single_test" );
 }
 else {
-    $return = prove( '-r', '-Ilib/', glob('t/live_*.t') );
+    $return = prove( '-r', '-Ilib/', glob('t/aggregate/live_*.t') );
 }
 
 # shut it down

Modified: Catalyst-Runtime/5.80/trunk/t/optional_lighttpd-fastcgi-non-root.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/optional_lighttpd-fastcgi-non-root.t	2008-12-05 15:54:58 UTC (rev 8749)
+++ Catalyst-Runtime/5.80/trunk/t/optional_lighttpd-fastcgi-non-root.t	2008-12-05 16:00:08 UTC (rev 8750)
@@ -107,7 +107,7 @@
 # run the testsuite against the server
 $ENV{CATALYST_SERVER} = "http://localhost:$port/deep/path";
 
-my @tests = (shift) || glob('t/live_*');
+my @tests = (shift) || glob('t/aggregate/live_*');
 eval {
     runtests(@tests);
 };

Modified: Catalyst-Runtime/5.80/trunk/t/optional_lighttpd-fastcgi.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/optional_lighttpd-fastcgi.t	2008-12-05 15:54:58 UTC (rev 8749)
+++ Catalyst-Runtime/5.80/trunk/t/optional_lighttpd-fastcgi.t	2008-12-05 16:00:08 UTC (rev 8750)
@@ -102,7 +102,7 @@
 # run the testsuite against the server
 $ENV{CATALYST_SERVER} = "http://localhost:$port";
 
-my @tests = (shift) || glob('t/live_*');
+my @tests = (shift) || glob('t/aggregate/live_*');
 eval {
     runtests(@tests);
 };




More information about the Catalyst-commits mailing list