summaryrefslogtreecommitdiff
path: root/bin/auto_compile
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-23 01:27:10 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-23 01:27:10 +0000
commita1e5d014124e55d24abf7a1a8665672d97de4b90 (patch)
treef7e17a533b9b4a7862c7a15296097e47adc45948 /bin/auto_compile
parent8559c1ae3badacdc7c5fd82e1a1cd5885f14c09e (diff)
downloadATCD-a1e5d014124e55d24abf7a1a8665672d97de4b90.tar.gz
Added more tests
Diffstat (limited to 'bin/auto_compile')
-rwxr-xr-xbin/auto_compile44
1 files changed, 26 insertions, 18 deletions
diff --git a/bin/auto_compile b/bin/auto_compile
index 2351d26abe5..d8b867f58fc 100755
--- a/bin/auto_compile
+++ b/bin/auto_compile
@@ -57,9 +57,14 @@ $MODULE='ACE_wrappers';
'TAO/tests/Param_Test , run_test.pl',
'TAO/tests/Param_Test , run_test.pl -i dii',
'TAO/performance-tests/Cubit/TAO/IDL_Cubit , run_test.pl',
- 'TAO/orbsvcs/tests/Event/Basic , run_test.pl',
- 'TAO/orbsvcs/tests/Event/Performance , run_test.pl',
- 'TAO/orbsvcs/tests/Simple_Naming , run_test.pl',
+ 'TAO/tests/OctetSeq , run_test.pl',
+ 'TAO/tests/Multiple_Inheritance , run_test.pl',
+ 'TAO/tests/MT_Client , run_test.pl',
+ 'TAO/tests/MT_Server , run_test.pl',
+ 'TAO/tests/NestedUpcall/Reactor , run_test.pl',
+ 'TAO/tests/NestedUpcall/MT_Client_Test , run_test.pl',
+ 'TAO/tests/POA/Identity , run_test.pl',
+ 'TAO/tests/POA/Destruction , run_test.pl',
'TAO/examples/POA/Adapter_Activator , run_test.pl',
'TAO/examples/POA/DSI , run_test.pl',
'TAO/examples/POA/Default_Servant , run_test.pl',
@@ -72,13 +77,22 @@ $MODULE='ACE_wrappers';
'TAO/examples/POA/Reference_Counted_Servant , run_test.pl',
'TAO/examples/POA/Loader , run_test.pl',
'TAO/examples/POA/RootPOA , run_test.pl',
- 'TAO/examples/POA/Identity , run_test.pl',
'TAO/examples/POA/Adapter_Activator , run_test.pl',
- 'TAO/tests/MT_Client , run_test.pl',
- 'TAO/tests/MT_Server , run_test.pl',
- 'TAO/tests/OctetSeq , run_test.pl',
- 'TAO/tests/Multiple_Inheritance , run_test.pl',
- 'TAO/tests/NestedUpcall/Reactor , run_test.pl',
+ 'TAO/examples/Simple/bank , run_test.pl',
+ 'TAO/examples/Simple/grid , run_test.pl',
+ 'TAO/examples/Simple/time-date , run_test.pl',
+ 'TAO/examples/Simple/time , run_test.pl',
+ 'TAO/orbsvcs/tests/Simple_Naming , run_test.pl',
+ 'TAO/orbsvcs/tests/Event/Basic , run_test.pl',
+ 'TAO/orbsvcs/tests/Event/Performance , run_test.pl',
+ 'TAO/orbsvcs/tests/EC_Basic , run_test.pl',
+ 'TAO/orbsvcs/tests/EC_Custom_Marshal , run_test.pl',
+ 'TAO/orbsvcs/tests/EC_Throughput , run_test.pl',
+# 'TAO/orbsvcs/tests/EC_Mcast , run_test.pl',
+# 'TAO/orbsvcs/tests/EC_Multiple , run_test.pl',
+# 'TAO/orbsvcs/tests/Event_Latency , run_test.pl',
+# 'TAO/examples/Simple/echo , run_test.pl',
+# 'TAO/examples/Simple/chat , run_test.pl',
'TAO/performance-tests/Cubit/TAO/MT_Cubit , run_test.pl -n 100',
'TAO/performance-tests/POA/Object_Creation_And_Registration , run_test.pl'
# 'TAO/orbsvcs/tests/ImplRepo , run_test.pl airplane',
@@ -211,7 +225,6 @@ $ENV{'ACE_ROOT'} = $CHECKOUT . '/' . $MODULE . '/build/' . $BUILD;
$ENV{'TAO_ROOT'} = $CHECKOUT . '/' . $MODULE . '/build/' . $BUILD . '/TAO';
@failures = ();
-@warnings = ();
$MAKEFLAGS .= " shared_libs_only=1";
foreach $i (@BUILD_LIST) {
$date = localtime;
@@ -222,7 +235,6 @@ foreach $i (@BUILD_LIST) {
local $current_dir = $i;
local $last_error = "";
- local $last_warning = "";
while (<MAKE>) {
print LOG $_;
chop;
@@ -238,9 +250,9 @@ foreach $i (@BUILD_LIST) {
}
}
if (m/Warning:/ || m/warning:/) {
- if ($last_warning ne $current_dir) {
- push @warnings, "Warning while compiling in $current_dir\n";
- $last_warning = $current_dir;
+ if ($last_error ne $current_dir) {
+ push @failures, "Warning while compiling in $current_dir\n";
+ $last_error = $current_dir;
}
}
}
@@ -293,10 +305,6 @@ if ($#failures >= 0) {
mydie @failures;
}
-if ($#warnings >= 0) {
- mywarn @warnings;
-}
-
close(LOG)
|| mydie "cannot close LOGFILE";