summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-02-25 08:26:06 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-02-25 08:26:06 +0000
commit6a25bf640c80fa29d0b4ff6f1b9af4e3b12b1d67 (patch)
treee160a2c025b1092890208b6288c16dbf0a92bb65 /TAO/orbsvcs/tests
parent5ef252848df6fc4b44324f362f240d2653b8c35a (diff)
downloadATCD-6a25bf640c80fa29d0b4ff6f1b9af4e3b12b1d67.tar.gz
Diffstat (limited to 'TAO/orbsvcs/tests')
-rwxr-xr-xTAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/run_test.pl11
1 files changed, 10 insertions, 1 deletions
diff --git a/TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/run_test.pl b/TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/run_test.pl
index df64868be2d..b79148a0024 100755
--- a/TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/run_test.pl
+++ b/TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/run_test.pl
@@ -23,7 +23,16 @@ for ($i = 0; $i <= $#ARGV; $i++) {
}
}
-$TAO_IFR = new PerlACE::Process ("../../../../orbsvcs/IFR_Service/tao_ifr");
+if ($^O eq "MSWin32")
+{
+ $tao_ifr = "$ENV{ACE_ROOT}/bin/tao_ifr";
+}
+else
+{
+ $tao_ifr = "../../../IFR_Service/tao_ifr";
+}
+
+$TAO_IFR = new PerlACE::Process ("$tao_ifr");
$IFR = new PerlACE::Process ("../../../../orbsvcs/IFR_Service/IFR_Service", " -o $ifr_iorfile");
$CL = new PerlACE::Process ("IDL3_Test", "-ORBInitRef InterfaceRepository=file://$ifr_iorfile"
. " $debug");