summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-11-01 23:22:29 +0000
committerdengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-11-01 23:22:29 +0000
commite25d71a1c90b6d1be75e0d24a2509b40739da214 (patch)
tree61ed70221bf52a016fba21dd07e9ddfe6625c071
parent16fea355c7c52facc639d6d9c0ed345d39791918 (diff)
downloadATCD-e25d71a1c90b6d1be75e0d24a2509b40739da214.tar.gz
Fixed the perl scripts by using environment variables instead of relative paths.
-rwxr-xr-xCIAO/DAnCE/tests/NodeApplicationTest/run_test.pl2
-rwxr-xr-xCIAO/DAnCE/tests/NodeApplicationTest/run_test_ex.pl2
-rwxr-xr-xCIAO/DAnCE/tests/NodeApplicationTest/run_test_simple.pl2
3 files changed, 3 insertions, 3 deletions
diff --git a/CIAO/DAnCE/tests/NodeApplicationTest/run_test.pl b/CIAO/DAnCE/tests/NodeApplicationTest/run_test.pl
index d60556d3f11..11d7801b133 100755
--- a/CIAO/DAnCE/tests/NodeApplicationTest/run_test.pl
+++ b/CIAO/DAnCE/tests/NodeApplicationTest/run_test.pl
@@ -5,7 +5,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
# $Id$
# -*- perl -*-
-use lib "../../../../../bin";
+use lib "$ENV{'ACE_ROOT'}/bin";
use PerlACE::Run_Test;
$status = 0;
diff --git a/CIAO/DAnCE/tests/NodeApplicationTest/run_test_ex.pl b/CIAO/DAnCE/tests/NodeApplicationTest/run_test_ex.pl
index 3a84d0adaf9..0fd413091f0 100755
--- a/CIAO/DAnCE/tests/NodeApplicationTest/run_test_ex.pl
+++ b/CIAO/DAnCE/tests/NodeApplicationTest/run_test_ex.pl
@@ -5,7 +5,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
# $Id$
# -*- perl -*-
-use lib "../../../../../bin";
+use lib "$ENV{'ACE_ROOT'}/bin";
use PerlACE::Run_Test;
$status = 0;
diff --git a/CIAO/DAnCE/tests/NodeApplicationTest/run_test_simple.pl b/CIAO/DAnCE/tests/NodeApplicationTest/run_test_simple.pl
index b78f119b843..c1811abee9d 100755
--- a/CIAO/DAnCE/tests/NodeApplicationTest/run_test_simple.pl
+++ b/CIAO/DAnCE/tests/NodeApplicationTest/run_test_simple.pl
@@ -5,7 +5,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
# $Id$
# -*- perl -*-
-use lib "../../../../../bin";
+use lib "$ENV{'ACE_ROOT'}/bin";
use PerlACE::Run_Test;
$status = 0;