Greetings, On a fully patched box running sparc Solaris 8, with perl 5.8.0 and MySQL 4.0.13, when I try to run the following test script, I get a core dump:
----------------------------------------- use DBI; #establish connection to the database $driver = "mysql"; $drh = DBI->install_driver($driver); $dsn = "DBI:$driver:database=webmaster;host=localhost"; $dbh = DBI->connect($dsn,'nobody',''); print 'hello'; ----------------------------------- DBI appeared to build without errors; however "make test" yields: ----------------------------------- Failed Test Stat Wstat Total Fail Failed List of Failed ------------------------------------------------------------------------------- t/15array.t 34 1 2.94% 18 t/zz_15array_pp.t 34 1 2.94% 18 9 tests skipped. Failed 2/34 test scripts, 94.12% okay. 2/1203 subtests failed, 99.83% okay. make: *** [test_dynamic] Error 29 ------------------------------------- Any assistance/pointers in resolving this issue would be greatly appreciated. TIA, --Duncan
