summaryrefslogtreecommitdiff
path: root/examples/QOS/Diffserv/run_test.pl
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /examples/QOS/Diffserv/run_test.pl
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'examples/QOS/Diffserv/run_test.pl')
-rwxr-xr-xexamples/QOS/Diffserv/run_test.pl40
1 files changed, 0 insertions, 40 deletions
diff --git a/examples/QOS/Diffserv/run_test.pl b/examples/QOS/Diffserv/run_test.pl
deleted file mode 100755
index aef0765bac8..00000000000
--- a/examples/QOS/Diffserv/run_test.pl
+++ /dev/null
@@ -1,40 +0,0 @@
-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::Run_Test;
-
-$iorfile = PerlACE::LocalFile ("ior");
-
-unlink $iorfile;
-$status = 0;
-
-$CL = new PerlACE::Process ("diffserv_test", "localhost 20002");
-$SV = new PerlACE::Process ("server");
-
-$server = $SV->Spawn ();
-$SV->TimedWait(2);
-
-$client = $CL->SpawnWaitKill (200);
-
-if ($client != 0) {
- $time = localtime;
- print STDERR "ERROR: client returned $client at $time\n";
- $status = 1;
-}
-
-$server = $SV->WaitKill (400);
-
-if ($server != 0) {
- $time = localtime;
- print STDERR "ERROR: server returned $server at $time\n";
- $status = 1;
-}
-
-unlink $iorfile;
-
-exit $status;