I've a suspicion that the test failures I have been seeing on Solaris are because 'make test' is being run with parallel make instead of serial make. I don't want to switch entirely to serial make because the builds already take a long time. I've therefore hacked mktest.pl to use /usr/ccs/bin/make for the 'make _test' step only - can someone confirm that I haven't missed any other places that need changing?

Thanks,

--
Alan Burlison
--

*** mktest.pl.orig      Mon Aug 11 15:47:37 2003
--- mktest.pl   Mon Aug 11 15:53:50 2003
***************
*** 370,376 ****
                chdir ".." or die "unable to chdir () out of 'win32'";
            } else {
                local $ENV{PERL} = "./perl";
!               open TST, "make _test |";
            }

            my @nok = ();
--- 370,376 ----
                chdir ".." or die "unable to chdir () out of 'win32'";
            } else {
                local $ENV{PERL} = "./perl";
!               open TST, "/usr/ccs/bin/make _test |";
            }

my @nok = ();



Reply via email to