Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Abstract_Interface / run_test.pl
blob3a6fc8e0a5e1b24e8dfce9e66fccaeaadd109e33
1 eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
2 & eval 'exec perl -S $0 $argv:q'
3 if 0;
5 # -*- perl -*-
7 use lib "$ENV{ACE_ROOT}/bin";
8 use PerlACE::TestTarget;
10 $debug = "";
11 $which_test = "";
12 $status = 0;
14 foreach $i (@ARGV) {
15 if ($i eq "-d") {
16 $debug = $i;
18 else {
19 $which_test = $i;
23 my $server = PerlACE::TestTarget::create_target(1) || die "Create target 1 failed\n";
24 my $client = PerlACE::TestTarget::create_target(2) || die "Create target 2 failed\n";
26 $iorbase = "test.ior";
27 $server_iorfile = $server->LocalFile ("$iorbase");
28 $client_iorfile = $client->LocalFile ("$iorbase");
29 $server->DeleteFile($iorbase);
30 $client->DeleteFile($iorbase);
32 $SV = $server->CreateProcess ("server",
33 "-ORBDottedDecimalAddresses 1 "
34 . " -o $server_iorfile");
36 $SV->Spawn ();
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);
42 exit 1;
45 if ($server->GetFile ($iorbase) == -1) {
46 print STDERR "ERROR: cannot retrieve file <$server_iorfile>\n";
47 $SV->Kill (); $SV->TimedWait (1);
48 exit 1;
50 if ($client->PutFile ($iorbase) == -1) {
51 print STDERR "ERROR: cannot set file <$client_iorfile>\n";
52 $SV->Kill (); $SV->TimedWait (1);
53 exit 1;
56 $CL = $client->CreateProcess ("client",
57 " -k file://$client_iorfile "
58 . " $debug "
59 . " $which_test");
61 $client_status = $CL->SpawnWaitKill ($server->ProcessStartWaitInterval());
63 if ($client_status != 0) {
64 print STDERR "ERROR: client returned $client_status\n";
65 $status = 1;
68 $server_status = $SV->WaitKill ($server->ProcessStopWaitInterval());
70 if ($server_status != 0) {
71 print STDERR "ERROR: server returned $server_status\n";
72 $status = 1;
75 $server->DeleteFile($iorbase);
76 $client->DeleteFile($iorbase);
78 exit $status;