On Thu, Jan 12, 2006 at 02:09:26PM +0000, Charles Jardine wrote:
> Here is a patch which fixes this:
>
> Index: t/10general.t
> ===================================================================
> --- t/10general.t (revision 2334)
> +++ t/10general.t (working copy)
> @@ -22,8 +22,8 @@
> SKIP: {
> skip "not unix-like", 2 unless $Config{d_semctl};
> # basic check that we can fork subprocesses and wait for the status
> - is system("false"), 1<<8, 'system false should return 256';
> - is system("true"), 0, 'system true should return 0';
> + is system("exit 1;"), 1<<8, 'system "exit 1;" should return 256';
> + is system("exit 0;"), 0, 'system "exit 0;" should return 0';
> }
Thanks, applied (to DBD::Oracle :)
Tim..