summaryrefslogtreecommitdiff
path: root/ACE/performance-tests/TCP/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/performance-tests/TCP/run_test.pl')
-rwxr-xr-xACE/performance-tests/TCP/run_test.pl34
1 files changed, 34 insertions, 0 deletions
diff --git a/ACE/performance-tests/TCP/run_test.pl b/ACE/performance-tests/TCP/run_test.pl
new file mode 100755
index 00000000000..8000ae6496e
--- /dev/null
+++ b/ACE/performance-tests/TCP/run_test.pl
@@ -0,0 +1,34 @@
+eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
+ & eval 'exec perl -S $0 $argv:q'
+ if 0;
+
+# $Id$
+# -*- perl -*-
+
+use lib "$ENV{ACE_ROOT}/bin";
+use PerlACE::TestTarget;
+
+$SV = new PerlACE::Process ("tcp_test", "-s");
+$CL = new PerlACE::Process ("tcp_test", "-c localhost -i 50000 -b 64");
+
+$status = 0;
+
+$SV->Spawn ();
+
+sleep 5;
+
+$client = $CL->SpawnWaitKill (60);
+
+$server = $SV->WaitKill (5);
+
+if ($server != 0) {
+ print "ERROR: server returned $server\n";
+ $status = 1;
+}
+
+if ($client != 0) {
+ print "ERROR: client returned $client\n";
+ $status = 1;
+}
+
+exit $status;