summaryrefslogtreecommitdiff
path: root/ACE/bin/auto_run_tests.pl
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2007-02-02 14:43:52 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2007-02-02 14:43:52 +0000
commit418c517774e868d16d21d020d315d86591f8eafd (patch)
tree07e55dec4648aa0d22b6baf9898281d94b73e7aa /ACE/bin/auto_run_tests.pl
parentc968754b1a41838526f7d816b7dda6cd762e32f8 (diff)
downloadATCD-418c517774e868d16d21d020d315d86591f8eafd.tar.gz
ChangeLogTag: Fri Feb 2 14:32:06 UTC 2007 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'ACE/bin/auto_run_tests.pl')
-rwxr-xr-xACE/bin/auto_run_tests.pl12
1 files changed, 8 insertions, 4 deletions
diff --git a/ACE/bin/auto_run_tests.pl b/ACE/bin/auto_run_tests.pl
index 4f23f6f8bd1..e1383cd443f 100755
--- a/ACE/bin/auto_run_tests.pl
+++ b/ACE/bin/auto_run_tests.pl
@@ -75,10 +75,14 @@ push (@file_list, "$opt_l");
}
if (scalar(@file_list) == 0) {
-push (@file_list, "/bin/ace_tests.lst");
-push (@file_list, "/bin/tao_orb_tests.lst") if -d "$ACE_ROOT/TAO";
-push (@file_list, "/bin/tao_other_tests.lst") if -d "$ACE_ROOT/TAO";
-push (@file_list, "/bin/ciao_tests.lst") if -d "$ACE_ROOT/TAO/CIAO";
+ push (@file_list, "/bin/ace_tests.lst");
+ if (-d $TAO_ROOT || -d "$ACE_ROOT/TAO") {
+ push (@file_list, "/bin/tao_orb_tests.lst");
+ push (@file_list, "/bin/tao_other_tests.lst");
+ }
+ if (-d $CIAO_ROOT || -d "$ACE_ROOT/TAO/CIAO") {
+ push (@file_list, "/bin/ciao_tests.lst");
+ }
}
$startdir = getcwd();