[Catalyst-commits] r7090 - Catalyst-Runtime/5.70/trunk/t

andyg at dev.catalyst.perl.org andyg at dev.catalyst.perl.org
Mon Nov 5 22:05:20 GMT 2007


Author: andyg
Date: 2007-11-05 22:05:19 +0000 (Mon, 05 Nov 2007)
New Revision: 7090

Modified:
   Catalyst-Runtime/5.70/trunk/t/optional_lighttpd-fastcgi-non-root.t
   Catalyst-Runtime/5.70/trunk/t/optional_lighttpd-fastcgi.t
Log:
Fix lighttpd tests to use correct lib directory

Modified: Catalyst-Runtime/5.70/trunk/t/optional_lighttpd-fastcgi-non-root.t
===================================================================
--- Catalyst-Runtime/5.70/trunk/t/optional_lighttpd-fastcgi-non-root.t	2007-11-02 21:24:11 UTC (rev 7089)
+++ Catalyst-Runtime/5.70/trunk/t/optional_lighttpd-fastcgi-non-root.t	2007-11-05 22:05:19 UTC (rev 7090)
@@ -76,12 +76,15 @@
 fastcgi.server = (
     "/deep/path" => (
         "FastCgiTest" => (
-            "socket"       => "$docroot/test.socket",
-            "check-local"  => "disable",
-            "bin-path"     => "$docroot/TestApp/script/testapp_fastcgi.pl",
-            "min-procs"    => 1,
-            "max-procs"    => 1,
-            "idle-timeout" => 20
+            "socket"          => "$docroot/test.socket",
+            "check-local"     => "disable",
+            "bin-path"        => "$docroot/TestApp/script/testapp_fastcgi.pl",
+            "min-procs"       => 1,
+            "max-procs"       => 1,
+            "idle-timeout"    => 20,
+            "bin-environment" => (
+                "PERL5LIB" => "$docroot/../../lib"
+            )
         )
     )
 )

Modified: Catalyst-Runtime/5.70/trunk/t/optional_lighttpd-fastcgi.t
===================================================================
--- Catalyst-Runtime/5.70/trunk/t/optional_lighttpd-fastcgi.t	2007-11-02 21:24:11 UTC (rev 7089)
+++ Catalyst-Runtime/5.70/trunk/t/optional_lighttpd-fastcgi.t	2007-11-05 22:05:19 UTC (rev 7090)
@@ -71,12 +71,15 @@
 fastcgi.server = (
     "" => (
         "FastCgiTest" => (
-            "socket"       => "$docroot/test.socket",
-            "check-local"  => "disable",
-            "bin-path"     => "$docroot/TestApp/script/testapp_fastcgi.pl",
-            "min-procs"    => 1,
-            "max-procs"    => 1,
-            "idle-timeout" => 20
+            "socket"          => "$docroot/test.socket",
+            "check-local"     => "disable",
+            "bin-path"        => "$docroot/TestApp/script/testapp_fastcgi.pl",
+            "min-procs"       => 1,
+            "max-procs"       => 1,
+            "idle-timeout"    => 20,
+            "bin-environment" => (
+                "PERL5LIB" => "$docroot/../../lib"
+            )
         )
     )
 )




More information about the Catalyst-commits mailing list