diff options
| author | Alexander Barton <alex@barton.de> | 2002-09-16 09:54:17 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-09-16 09:54:17 +0000 |
| commit | 34bdaaa33f90c88bf28af9f9099a5e9126feaa89 (patch) | |
| tree | 71184e66bd060e3db4bd0ebaa54fd56249006a6a /src/testsuite | |
| parent | 508fa48aa6342beb50e510285b683abe54e0fe92 (diff) | |
| download | ngircd-34bdaaa33f90c88bf28af9f9099a5e9126feaa89.tar.gz ngircd-34bdaaa33f90c88bf28af9f9099a5e9126feaa89.zip | |
- CLIENTS-Konstante unter IRIX vermindet.
Diffstat (limited to 'src/testsuite')
| -rwxr-xr-x | src/testsuite/stress-server.sh | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/testsuite/stress-server.sh b/src/testsuite/stress-server.sh index 8ea790f0..49ef0bd6 100755 --- a/src/testsuite/stress-server.sh +++ b/src/testsuite/stress-server.sh @@ -1,12 +1,9 @@ #!/bin/sh # ngIRCd Test Suite -# $Id: stress-server.sh,v 1.3 2002/09/13 06:11:19 alex Exp $ +# $Id: stress-server.sh,v 1.4 2002/09/16 09:54:17 alex Exp $ -if [ `uname` = "Darwin" ]; then - CLIENTS=20 -else - CLIENTS=50 -fi +if [ `uname` = "Darwin" -o `uname` = "IRIX" -o `uname` = "IRIX64" ]; then CLIENTS=5 +else CLIENTS=50; fi name=`basename $0` test=`echo ${name} | cut -d '.' -f 1` |