projects
/
ngircd-alex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7b0953
)
- unter Darwin werden nur noch 20 Clients parallel gestartet.
author
Alexander Barton
<alex@barton.de>
Fri, 13 Sep 2002 06:11:19 +0000
(06:11 +0000)
committer
Alexander Barton
<alex@barton.de>
Fri, 13 Sep 2002 06:11:19 +0000
(06:11 +0000)
src/testsuite/stress-server.sh
patch
|
blob
|
history
diff --git
a/src/testsuite/stress-server.sh
b/src/testsuite/stress-server.sh
index 313e563f6b6250bab505f4b256a8f0e95b910395..8ea790f01789fd29565582d68a6103ec2c7a97b4 100755
(executable)
--- a/
src/testsuite/stress-server.sh
+++ b/
src/testsuite/stress-server.sh
@@
-1,8
+1,12
@@
#!/bin/sh
# ngIRCd Test Suite
-# $Id: stress-server.sh,v 1.
2 2002/09/12 02:28:44
alex Exp $
+# $Id: stress-server.sh,v 1.
3 2002/09/13 06:11:19
alex Exp $
-CLIENTS=50
+if [ `uname` = "Darwin" ]; then
+ CLIENTS=20
+else
+ CLIENTS=50
+fi
name=`basename $0`
test=`echo ${name} | cut -d '.' -f 1`