summaryrefslogtreecommitdiff
path: root/TAO/tests/ORB_Local_Config/Service_Dependency/run_test.pl
blob: 6f5170ad3c7d21ce4cc07357e86f4600ecca4278 (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
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;

my $server = PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
$server->AddLibPath ('../lib');

$server->AddRuntimeLibrary ('TAO_Codeset');

my @confbases = ('Service_Config_Test.conf', 'Service_Config_Test.UTF-16.conf', 'Service_Config_Test.WCHAR_T.conf');
foreach my $conffilebase (@confbases) {
  my $conffile = $server->LocalFile ($conffilebase);

  # copy the configuation files
  if ($server->PutFile ($conffilebase) == -1) {
      print STDERR "ERROR: cannot set file <$conffile>\n";
      return 1;
  }
  if ($server->PutFile ($conffilebase.'.xml') == -1) {
      print STDERR "ERROR: cannot set file <$conffile".'.xml'.">\n";
      return 1;
  }
}

$SV = $server->CreateProcess ("Test");

$test = $SV->SpawnWaitKill ($server->ProcessStartWaitInterval());

if ($test != 0) {
    print STDERR "ERROR: test returned $test\n";
    exit 1;
}

exit 0;