summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_1630_Regression/run_test.pl
blob: c0970b230edabc6d8f82408d81fa07477784eb6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60

# $Id$

eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
     & eval 'exec perl -S $0 $argv:q'
     if 0;

# -*- perl -*-

use lib "$ENV{ACE_ROOT}/bin";
use PerlACE::Run_Test;

# The IFRService IOR file
#
$ifriorfile = PerlACE::LocalFile("ifr.ior");
unlink $ifriorfile;

# The client process
#
$CLIENT     = new PerlACE::Process(PerlACE::LocalFile("testclient"));

# Fire up the IFR Service
#
$IFR   = new PerlACE::Process ("../../IFR_Service/IFR_Service", "-o $ifriorfile");
$IFR->Spawn ();

if (PerlACE::waitforfile_timed ($ifriorfile, 10) == -1)
{
   print STDERR "ERROR: cannot find IFR Service IOR file <$ifriorfile>\n";
   $IFR->Kill (); $IFR->TimedWait (1);
   exit 1;
}


# Run the client, it should return 0 for success.
$CLIENT->Arguments("-ORBInitRef InterfaceRepository=file://$ifriorfile");
if ($CLIENT->SpawnWaitKill (30) != 0)
{
   print STDERR "ERROR: test failed\n";
   $server = $IFR->TerminateWaitKill (5);
   if ($server != 0)
   {
       print STDERR "ERROR: Closing IFR Service returned $server\n";
       $status = 1;
   }
   unlink $ifriorfile;
   exit 1;
}

# Clean up and return
#
$server = $IFR->TerminateWaitKill (5);
if ($server != 0)
{
    print STDERR "ERROR: Closing IFR Service returned $server\n";
    $status = 1;
}
unlink $ifriorfile;

exit 0;