summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-23 15:40:07 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-23 15:40:07 +0000
commit2835e64a2c8fd0571f53747841a4561b4af3a8f9 (patch)
tree0fcecac4fa521cf083ff6ec8d963821430a4e5c3
parent315c5dc2ac745d6c173897afa2c4d7d19960aba5 (diff)
downloadATCD-2835e64a2c8fd0571f53747841a4561b4af3a8f9.tar.gz
ChangeLogTag:Sun May 23 10:06:36 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
-rwxr-xr-xTAO/orbsvcs/tests/Event/Basic/run_test.pl9
-rwxr-xr-xTAO/orbsvcs/tests/Event/Performance/run_test.pl19
2 files changed, 16 insertions, 12 deletions
diff --git a/TAO/orbsvcs/tests/Event/Basic/run_test.pl b/TAO/orbsvcs/tests/Event/Basic/run_test.pl
index 75537f52e42..94e0e3ec45b 100755
--- a/TAO/orbsvcs/tests/Event/Basic/run_test.pl
+++ b/TAO/orbsvcs/tests/Event/Basic/run_test.pl
@@ -12,16 +12,17 @@ unshift @INC, '../../../../../bin';
require Process;
require Uniqueid;
-print "Reconnect suppliers and consumers, using disconnect/connect calls\n";
+print STDERR "\n\nReconnect suppliers and consumers,",
+ " using disconnect/connect calls\n";
system ("Reconnect -suppliers 100 -consumers 100 -d 100");
-print "\n\nReconnect suppliers and consumers, using connect calls\n";
+print STDERR "\n\nReconnect suppliers and consumers, using connect calls\n";
system ("Reconnect -suppliers 100 -consumers 100 -d 100 -s -c");
-print "\n\nShutdown EC without clients still attached\n";
+print STDERR "\n\nShutdown EC with clients still attached\n";
system ("Shutdown -verbose -suppliers 5 -consumers 5");
-print "\n\nComplex event channel test,",
+print STDERR "\n\nComplex event channel test,",
"multiple ECs connected through gateways\n";
system ("Observer -ORBsvcconf observer.conf"
." -consumer_tshift 0 -consumers 5"
diff --git a/TAO/orbsvcs/tests/Event/Performance/run_test.pl b/TAO/orbsvcs/tests/Event/Performance/run_test.pl
index cfa8f281140..72c68d126a3 100755
--- a/TAO/orbsvcs/tests/Event/Performance/run_test.pl
+++ b/TAO/orbsvcs/tests/Event/Performance/run_test.pl
@@ -12,32 +12,35 @@ unshift @INC, '../../../../../bin';
require Process;
require Uniqueid;
-print "Throughput/Latency single threaded configuration\n";
+print STDERR "\n\nThroughput/Latency single threaded configuration\n";
system ("Throughput -burstsize 100000 -burstcount 1");
-print "\n\nThroughput/Latency MT-safe configuration\n";
+print STDERR "\n\nThroughput/Latency MT-safe configuration\n";
system ("Throughput -ORBsvcconf ec.st.conf -burstsize 100000"
." -burstcount 1");
-print "\n\nThroughput/Latency MT-safe configuration, 4 consumers\n";
+print STDERR "\n\nThroughput/Latency MT-safe configuration, 4 consumers\n";
system ("Throughput -ORBsvcconf ec.st.conf -burstsize 100000"
." -burstcount 1 -consumers 4");
-print "Throughput/Latency MT-safe configuration, 4 consumers 4 suppliers\n";
+print STDERR "\n\nThroughput/Latency MT-safe configuration,",
+ " 4 consumers 4 suppliers\n";
system ("Throughput -ORBsvcconf ec.st.conf -burstsize 100000"
." -burstcount 1 -consumers 4 -suppliers 4");
-print "\n\nThroughput/Latency MT-safe configuration,",
- "4 consumers 4 suppliers\n";
+print STDERR "\n\nThroughput/Latency MT-safe configuration,",
+ " 4 consumers 4 suppliers\n";
system ("Throughput -ORBsvcconf ec.st.conf -burstsize 100000"
." -burstcount 1 -consumers 4 -suppliers 4"
." -consumers_tshift 0 -suppliers_tshift 0");
-print "Connection and disconnection time, 100 consumers 100 suppliers\n";
+print STDERR "\n\nConnection and disconnection time,",
+ " 100 consumers 100 suppliers\n";
system ("Connect -ORBsvcconf ec.st.conf -consumers 100 -suppliers 100"
." -connection_order interleaved");
-print "Connection and disconnection time, 500 consumers 500 suppliers\n";
+print STDERR "\n\nConnection and disconnection time,",
+ " 500 consumers 500 suppliers\n";
system ("Connect -ORBsvcconf ec.st.conf -consumers 500 -suppliers 500"
." -connection_order interleaved");