summaryrefslogtreecommitdiff
path: root/performance-tests/UDP/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'performance-tests/UDP/run_test.pl')
-rwxr-xr-xperformance-tests/UDP/run_test.pl34
1 files changed, 0 insertions, 34 deletions
diff --git a/performance-tests/UDP/run_test.pl b/performance-tests/UDP/run_test.pl
deleted file mode 100755
index 638b8c18c99..00000000000
--- a/performance-tests/UDP/run_test.pl
+++ /dev/null
@@ -1,34 +0,0 @@
-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
- & eval 'exec perl -S $0 $argv:q'
- if 0;
-
-# $Id$
-# -*- perl -*-
-
-use lib '../../bin';
-use PerlACE::Run_Test;
-
-$SV = new PerlACE::Process ("udp_test", "-r");
-$CL = new PerlACE::Process ("udp_test", "-t -n 10000 localhost");
-
-$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;