eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' & eval 'exec perl -S $0 $argv:q' if 0; # $Id$ # -*- perl -*- use lib '../../../../bin'; use PerlACE::Run_Test; $iorfile = PerlACE::LocalFile ("test.ior"); unlink $iorfile; $SV = new PerlACE::Process ("server"); $CL1 = new PerlACE::Process ("client", " -t 16 -i 1"); $SV->Spawn (); if (PerlACE::waitforfile_timed ($iorfile, $PerlACE::wait_interval_for_process_creation) == -1) { print STDERR "ERROR: cannot find file <$iorfile>\n"; $SV->Kill (); $SV->TimedWait (1); exit 1; } $CL1->Spawn (); $client1 = $CL1->WaitKill (300); if ($client1 != 0) { print STDERR "ERROR: client returned $client1\n"; $status = 1; } $server = $SV->WaitKill (10); if ($server != 0) { print STDERR "ERROR: server returned $server\n"; $status = 1; } exit $status;