summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-10-30 15:15:42 +0100
committerGitHub <noreply@github.com>2018-10-30 15:15:42 +0100
commit55f58cb6a53bf7d6b1e68fbeba8840ebee8b315d (patch)
treecaa474c4eabedcce461b14b9a48eb5bfb6793a4d
parent18c0f440f6f44d9d7e6b158401e85fdc434a73bf (diff)
parente3f6c776b0abbdeff7933063e1d7a7a10b073ba1 (diff)
downloadATCD-55f58cb6a53bf7d6b1e68fbeba8840ebee8b315d.tar.gz
Merge pull request #734 from jwillemsen/jwi-tietest
Fixed running of POA TIE test and add it to our daily test suite
-rw-r--r--TAO/bin/tao_orb_tests.lst1
-rwxr-xr-xTAO/tests/POA/TIE/run_test.pl12
2 files changed, 7 insertions, 6 deletions
diff --git a/TAO/bin/tao_orb_tests.lst b/TAO/bin/tao_orb_tests.lst
index 7908e0ef5e7..1f512ada9d7 100644
--- a/TAO/bin/tao_orb_tests.lst
+++ b/TAO/bin/tao_orb_tests.lst
@@ -331,6 +331,7 @@ TAO/tests/POA/On_Demand_Loading/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_
TAO/tests/POA/Reference_Counted_Servant/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !ACE_FOR_TAO
TAO/tests/POA/Loader/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !STATIC !ACE_FOR_TAO
TAO/tests/POA/RootPOA/run_test.pl:
+TAO/tests/POA/TIE/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO
TAO/tests/DiffServ/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO
TAO/tests/IORManipulation/run_test.pl:
TAO/tests/IORManipulation/filter/run_test.pl:
diff --git a/TAO/tests/POA/TIE/run_test.pl b/TAO/tests/POA/TIE/run_test.pl
index 533926a4430..a4bee9c2726 100755
--- a/TAO/tests/POA/TIE/run_test.pl
+++ b/TAO/tests/POA/TIE/run_test.pl
@@ -65,14 +65,14 @@ $SV = $server->CreateProcess ("server", "-ORBdebuglevel $debug_level " .
"-f $server_iorfile6");
$CL1 = $client1->CreateProcess ("client", "-ORBdebuglevel $debug_level " .
- "-a $client1_iorfile1 " .
- "-b $client1_iorfile2 " .
- "-c $client1_iorfile3 " .
- "-d $client1_iorfile4");
+ "-a file://$client1_iorfile1 " .
+ "-b file://$client1_iorfile2 " .
+ "-c file://$client1_iorfile3 " .
+ "-d file://$client1_iorfile4");
$CL2 = $client2->CreateProcess ("client", "-ORBdebuglevel $debug_level " .
- "-e $client2_iorfile5 " .
- "-f $client2_iorfile6");
+ "-e file://$client2_iorfile5 " .
+ "-f file://$client2_iorfile6");
$server_status = $SV->Spawn ();