summaryrefslogtreecommitdiff
path: root/tests/CSD_Collocation/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/CSD_Collocation/run_test.pl')
-rwxr-xr-xtests/CSD_Collocation/run_test.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/CSD_Collocation/run_test.pl b/tests/CSD_Collocation/run_test.pl
index d8a46d5d5af..ee93aa41e11 100755
--- a/tests/CSD_Collocation/run_test.pl
+++ b/tests/CSD_Collocation/run_test.pl
@@ -9,8 +9,14 @@ use lib "$ENV{ACE_ROOT}/bin";
use PerlACE::TestTarget;
my $server = PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
+
my $svcconf = "svc.conf.csd";
my $server_svcconf = $server->LocalFile ($svcconf);
+if ($server->PutFile ($svcconf) == -1) {
+ print STDERR "ERROR: cannot set file <$server_svcconf>\n";
+ exit 1;
+}
+
$SV = $server->CreateProcess ("Collocation", "-ORBSvcConf $server_svcconf");