summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2016-06-14 10:04:55 +0200
committerGitHub <noreply@github.com>2016-06-14 10:04:55 +0200
commit44b929cc4ff5efa1a65661b756fa2222b927ea9e (patch)
treeaa261d27ad110a08c8740ed5c105a8107819d19c
parentb985fa97c91e3f1846f5a5e43ce72bf6df6aa277 (diff)
parent5abacc1d2a7f54d9e26320d90dcc36622454eac9 (diff)
downloadATCD-44b929cc4ff5efa1a65661b756fa2222b927ea9e.tar.gz
Merge pull request #261 from makke4ever/master
Test on successful startup of the 3rd server did not fail while it should
-rwxr-xr-xTAO/tests/ORB_init/Portspan/run_test.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/TAO/tests/ORB_init/Portspan/run_test.pl b/TAO/tests/ORB_init/Portspan/run_test.pl
index 19aae8fba75..548f79f8663 100755
--- a/TAO/tests/ORB_init/Portspan/run_test.pl
+++ b/TAO/tests/ORB_init/Portspan/run_test.pl
@@ -32,11 +32,12 @@ if ($server_status != 0) {
exit 1;
}
-$server_status = $SV3->SpawnWaitKill ($server->ProcessStartWaitInterval());
+$server_status = $SV3->Spawn ();
if ($server_status == 0) {
print STDERR "ERROR: Last server didn't fail! Err:$server_status\n";
$SV1->Kill ();
$SV2->Kill ();
+ $SV3->Kill ();
exit 1;
}