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", "-k file://$client_iorfile");
32 # Test using ThruPOA collocation.
35 $server_status = $SV->Spawn ();
37 if ($server_status != 0) {
38 print STDERR
"ERROR: server returned $server_status\n";
42 if ($server->WaitForFileTimed ($iorbase,
43 $server->ProcessStartWaitInterval()) == -1) {
44 print STDERR
"ERROR: cannot find file <$server_iorfile>\n";
45 $SV->Kill (); $SV->TimedWait (1);
49 if ($server->GetFile ($iorbase) == -1) {
50 print STDERR
"ERROR: cannot retrieve file <$server_iorfile>\n";
51 $SV->Kill (); $SV->TimedWait (1);
54 if ($client->PutFile ($iorbase) == -1) {
55 print STDERR
"ERROR: cannot set file <$client_iorfile>\n";
56 $SV->Kill (); $SV->TimedWait (1);
60 $client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval());
62 if ($client_status != 0) {
63 print STDERR
"ERROR: client returned $client_status\n";
67 $server_status = $SV->WaitKill ($server->ProcessStopWaitInterval());
69 if ($server_status != 0) {
70 print STDERR
"ERROR: server returned $server_status\n";
74 $server->DeleteFile($iorbase);
75 $client->DeleteFile($iorbase);
78 # Test using Direct Collocation
81 $SV->Arguments ("-ORBCollocationStrategy direct -ORBdebuglevel $debug_level -o $server_iorfile");
83 $server_status = $SV->Spawn ();
85 if ($server_status != 0) {
86 print STDERR
"ERROR: server returned $server_status\n";
90 if ($server->WaitForFileTimed ($iorbase,
91 $server->ProcessStartWaitInterval()) == -1) {
92 print STDERR
"ERROR: cannot find file <$server_iorfile>\n";
93 $SV->Kill (); $SV->TimedWait (1);
97 if ($server->GetFile ($iorbase) == -1) {
98 print STDERR
"ERROR: cannot retrieve file <$server_iorfile>\n";
99 $SV->Kill (); $SV->TimedWait (1);
102 if ($client->PutFile ($iorbase) == -1) {
103 print STDERR
"ERROR: cannot set file <$client_iorfile>\n";
104 $SV->Kill (); $SV->TimedWait (1);
108 $client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval());
110 if ($client_status != 0) {
111 print STDERR
"ERROR: client returned $client_status\n";
115 $server_status = $SV->WaitKill ($server->ProcessStopWaitInterval());
117 if ($server_status != 0) {
118 print STDERR
"ERROR: server returned $server_status\n";
122 $server->DeleteFile($iorbase);
123 $client->DeleteFile($iorbase);
126 # Test using No Collocation
129 $SV->Arguments ("-ORBCollocation no -ORBdebuglevel $debug_level -o $server_iorfile");
131 $server_status = $SV->Spawn ();
133 if ($server_status != 0) {
134 print STDERR
"ERROR: server returned $server_status\n";
138 if ($server->WaitForFileTimed ($iorbase,
139 $server->ProcessStartWaitInterval()) == -1) {
140 print STDERR
"ERROR: cannot find file <$server_iorfile>\n";
141 $SV->Kill (); $SV->TimedWait (1);
145 if ($server->GetFile ($iorbase) == -1) {
146 print STDERR
"ERROR: cannot retrieve file <$server_iorfile>\n";
147 $SV->Kill (); $SV->TimedWait (1);
150 if ($client->PutFile ($iorbase) == -1) {
151 print STDERR
"ERROR: cannot set file <$client_iorfile>\n";
152 $SV->Kill (); $SV->TimedWait (1);
156 $client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval());
158 if ($client_status != 0) {
159 print STDERR
"ERROR: client returned $client_status\n";
163 $server_status = $SV->WaitKill ($server->ProcessStopWaitInterval());
165 if ($server_status != 0) {
166 print STDERR
"ERROR: server returned $server_status\n";
170 $server->DeleteFile($iorbase);
171 $client->DeleteFile($iorbase);