From: Ray Z. <rz...@co...> - 2002-01-22 21:09:38
|
Hi Chris, Just wanted to report some trouble I'm having with some of the tests in SPOPS-0.56. In t/05_exception.t it's failing all of the '$@ stringified' tests. The following patch makes it pass OK, but I haven't looked any deeper to understand why it was failing. This is with perl 5.005_03 on Linux. 22c22 < is( "$@", $e_message, '$@ stringified' ); --- > is( "$e", $e_message, '$@ stringified' ); 46c46 < is( "$@", $stringified, 'Security $@ stringified' ); --- > is( "$s", $stringified, 'Security $@ stringified' ); 76c76 < is( "$@", $d_message, 'DBI $@ stringified' ); --- > is( "$d", $d_message, 'DBI $@ stringified' ); 109c109 < is( "$@", $l_message, 'LDAP $@ stringified' ); --- > is( "$l", $l_message, 'LDAP $@ stringified' ); Also, when I did 'perl Makefile.PL' it claimed it was going to skip the LDAP tests (since I don't have it installed), but it still attempted (unsuccessfully, obviously) to execute t/40_ldap.t. -- Ray Zimmerman / e-mail: rz...@co... / 428-B Phillips Hall Sr Research / phone: (607) 255-9645 / Cornell University Associate / FAX: (815) 377-3932 / Ithaca, NY 14853 |