summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorjohnc <johnc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-02-14 16:32:14 +0000
committerjohnc <johnc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-02-14 16:32:14 +0000
commit644f0bd44ac5127ad64dfd610b0b6187ad82cf20 (patch)
treec6a4a6b5f304ef2550abcab8c07213fc761f4947 /TAO
parenta964e48060712a8ec02226931bd4aa35c833ce10 (diff)
downloadATCD-644f0bd44ac5127ad64dfd610b0b6187ad82cf20.tar.gz
ChangeLogTag: Thu Feb 14 16:31:05 UTC 2008 Ciju John <johnc at ociweb dot com>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog5
-rwxr-xr-xTAO/tests/Bug_3154_Regression/run_test.pl3
2 files changed, 8 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 77fe6b47bd9..8c8f726ec29 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Thu Feb 14 16:31:05 UTC 2008 Ciju John <johnc at ociweb dot com>
+
+ * tests/Bug_3154_Regression/run_test.pl:
+ Cross-platform build fix. HOST_ROOT taken into account.
+
Thu Feb 14 10:26:00 UTC 2008 Simon Massey <sma at prismtech dot com>
* tests/Big_Oneways/run_test.pl:
diff --git a/TAO/tests/Bug_3154_Regression/run_test.pl b/TAO/tests/Bug_3154_Regression/run_test.pl
index 57525d432b9..29b80459810 100755
--- a/TAO/tests/Bug_3154_Regression/run_test.pl
+++ b/TAO/tests/Bug_3154_Regression/run_test.pl
@@ -9,6 +9,9 @@ use lib "$ENV{ACE_ROOT}/bin";
use PerlACE::Run_Test;
$tao_idl = "$PerlACE::ACE_ROOT/bin/tao_idl";
+if (exists $ENV{HOST_ROOT}) {
+ $tao_idl = "$ENV{HOST_ROOT}/bin/tao_idl";
+}
# IDL file names
$idl_file = PerlACE::LocalFile ("test.idl");