1 eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
2 & eval 'exec perl -S $0 $argv:q'
7 use lib
"$ENV{ACE_ROOT}/bin";
8 use PerlACE
::TestTarget
;
19 my $server = PerlACE
::TestTarget
::create_target
(1) || die "Create target 1 failed\n";
20 my $client = PerlACE
::TestTarget
::create_target
(2) || die "Create target 2 failed\n";
22 my $iorbase = "server.ior";
23 my $server_iorfile = $server->LocalFile ($iorbase);
24 my $client_iorfile = $client->LocalFile ($iorbase);
25 $server->DeleteFile($iorbase);
26 $client->DeleteFile($iorbase);
28 $SV = $server->CreateProcess ("server", "-ORBdebuglevel $debug_level -o $server_iorfile");
29 $CL = $client->CreateProcess ("client");
31 $server_status = $SV->Spawn ();
33 if ($server_status != 0) {
34 print STDERR
"ERROR: server returned $server_status\n";
38 if ($server->WaitForFileTimed ($iorbase,
39 $server->ProcessStartWaitInterval()) == -1) {
40 print STDERR
"ERROR: cannot find file <$server_iorfile>\n";
41 $SV->Kill (); $SV->TimedWait (1);
45 if ($server->GetFile ($iorbase) == -1) {
46 print STDERR
"ERROR: cannot retrieve file <$server_iorfile>\n";
47 $SV->Kill (); $SV->TimedWait (1);
50 if ($client->PutFile ($iorbase) == -1) {
51 print STDERR
"ERROR: cannot set file <$client_iorfile>\n";
52 $SV->Kill (); $SV->TimedWait (1);
56 print STDERR
"\nFlushing based on implicit message counts\n\n";
58 $CL->Arguments ("-k file://$client_iorfile -c 5 -b -1 -f -1 -t -1");
60 $client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval() + 285);
62 if ($client_status != 0) {
63 print STDERR
"ERROR: client returned $client_status\n";
64 $SV->Kill (); $SV->TimedWait (1);
68 print STDERR
"\nFlushing based on implicit message bytes\n\n";
70 $CL->Arguments ("-k file://$client_iorfile -b 250 -c -1 -f -1 -t -1");
72 $client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval() + 285);
74 if ($client_status != 0) {
75 print STDERR
"ERROR: client returned $client_status\n";
76 $SV->Kill (); $SV->TimedWait (1);
80 print STDERR
"\nFlushing based on implicit timeout\n\n";
82 $CL->Arguments ("-k file://$client_iorfile -t 5000 -b -1 -c -1 -f -1");
84 $client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval() + 285);
86 if ($client_status != 0) {
87 print STDERR
"ERROR: client returned $client_status\n";
88 $SV->Kill (); $SV->TimedWait (1);
92 print STDERR
"\nExplicit queue flushing (and server shutdown)\n\n";
94 $CL->Arguments ("-k file://$client_iorfile -f 5 -b -1 -c 100 -t -1 -x");
96 $client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval() + 285);
98 if ($client_status != 0) {
99 print STDERR
"ERROR: client returned $client_status\n";
103 $server_status = $SV->WaitKill ($server->ProcessStopWaitInterval());
105 if ($server_status != 0) {
106 print STDERR
"ERROR: server returned $server_status\n";
110 $server->DeleteFile($iorbase);
111 $client->DeleteFile($iorbase);