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; use File::stat; # amount of delay between running the servers $sleeptime = 2; $status = 0; $nsior = PerlACE::LocalFile ("ns.ior"); $outfile = PerlACE::LocalFile ("output"); $debug = 0; unlink # generate test stream data $input = "test_input"; while ( -e $input ) { $input = $input."X"; } open( INPUT, "> $input" ) || die( "can't create input file: $input" ); for($i =0; $i < 1000 ; $i++ ) { print INPUT <Spawn (); if (PerlACE::waitforfile_timed ($nsior, 10) == -1) { print STDERR "ERROR: cannot find naming service IOR file\n"; $NS->Kill (); exit 1; } $output_file = "TCP_output"; for $protocol (@protocols) { if ($protocol eq "RTP/UDP") { $output_file = "RTP_output"; } else { $output_file = $protocol."_output"; } $SV = new PerlACE::Process ("server", "-ORBInitRef NameService=file://$nsior -ORBDebugLevel ".$debug." -f ".$output_file); $CL = new PerlACE::Process ("ftp", "-ORBInitRef NameService=file://$nsior -ORBDebugLevel ".$debug." -p ".$protocol." -f $input"); print STDERR "Using ".$protocol."\n"; print STDERR "Starting Server\n"; $SV->Spawn (); sleep $sleeptime; print STDERR "Starting Client\n"; $sender = $CL->SpawnWaitKill (200); if ($sender != 0) { print STDERR "ERROR: sender returned $sender\n"; $status = 1; } $receiver = $SV->TerminateWaitKill (200); if ($receiver != 0) { print STDERR "ERROR: receiver returned $receiver\n"; $status = 1; } } $nserver = $NS->TerminateWaitKill (5); if ($nserver != 0) { print STDERR "ERROR: Naming Service returned $nserver\n"; $status = 1; } unlink $nsior; unlink $output, $input; exit $status;