summaryrefslogtreecommitdiff
path: root/CIAO/examples/Hello_Event/descriptors/run_NodeDaemons.pl
blob: 66c33347199cf2da12c0df1ae96228e1ebf3ff7b (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
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::TestTarget;

$tg = PerlACE::TestTarget::create_target (1) || die "Create target for ns failed\n";

$iorbase1 = "NodeApp1.ior";
$iorfile1 = $tg->LocalFile ($iorbase1);
$iorbase2 = "NodeApp2.ior";
$iorfile2 = $tg->LocalFile ($iorbase2);

#for ($iter = 0; $iter <= $#ARGV; $iter++) {
#    if ($ARGV[$iter] eq "-h" || $ARGV[$iter] eq "-?") {
#      print "Run_Test Perl script for NodeApplicationTest \n\n";
#      print "run_test \n";
#      print "\n";
#      print "-h                  -- prints this information\n";
#      exit 0;
#  }
#}

$iorfile1 = $tg->DeleteFile ($iorbase1);
$iorfile2 = $tg->DeleteFile ($iorbase2);

$CIAO_ROOT=$ENV{'CIAO_ROOT'};

$SV1 = $tg->CreateProcess ("$DANCE_ROOT/bin/dance_node_manager",
                             "-ORBEndpoint iiop://localhost:10001 -s $DANCE_ROOT/bin/dance_locality_manager");

$SV2 = $tg->CreateProcess ("$DANCE_ROOT/bin/dance_node_manager",
                             "-ORBEndpoint iiop://localhost:20001 -s $DANCE_ROOT/bin/dance_locality_manager");

$SV1->Spawn ();
$SV2->Spawn ();

sleep (99999999999);