On Dec 14, 2004, at 9:43 AM, Max Maischein wrote:

Maybe this helps you investigate further - it is a dump of the object after test #4 :

Thanks, it does. The fix for apache.t, iconv.t, and sqlite.t is simple. For PostgreSQL, I'm going to have to add another feature. But in the meantime, would be be so kind as to confirm that this patch fixes the others?


Index: t/iconv.t
===================================================================
--- t/iconv.t   (revision 897)
+++ t/iconv.t   (working copy)
@@ -15,7 +15,7 @@

 ok( my $iconv = App::Info::Lib::Iconv->new(
     search_lib_dirs => $lib_dir,
-    search_exe_names => [$executable],
+    search_exe_names => ["iconv$ext"],
     search_inc_dirs => $inc_dir,
     search_bin_dirs => $bin_dir,
 ), "Got Object");
Index: t/apache.t
===================================================================
--- t/apache.t  (revision 899)
+++ t/apache.t  (working copy)
@@ -27,7 +27,7 @@

 ok( my $apache = App::Info::HTTPD::Apache->new(
     search_bin_dirs => $bin_dir,
-    search_exe_names => $exes{httpd},
+    search_exe_names => "httpd$ext"
     search_conf_dirs => $conf_dir,
     search_lib_dirs  => $conf_dir,
     search_inc_dirs  => $inc_dir,
Index: t/sqlite.t
===================================================================
--- t/sqlite.t  (revision 897)
+++ t/sqlite.t  (working copy)
@@ -17,7 +17,7 @@

 ok( my $sqlite = App::Info::RDBMS::SQLite->new(
     search_bin_dirs  => [$bin_dir],
-    search_exe_names => [$executable],
+    search_exe_names => ["sqlite3$ext"],
     search_lib_dirs  => [$lib_dir],
     search_inc_dirs  => [$inc_dir],
 ), "Got Object");


Thanks,

David

Reply via email to