From 2f961b707941c592a396ca14b92dfe1fea438293 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Wed, 17 Mar 2004 13:51:31 +0000 Subject: [PATCH] Wait only 1/10 instead of 1 second between processes. (yes I know sleep x.y is not portable but waiting so long is so annoying) git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@280 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- stresstest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stresstest.sh b/stresstest.sh index 3283409..a4376c1 100755 --- a/stresstest.sh +++ b/stresstest.sh @@ -20,7 +20,7 @@ i=1 while [ $i -le $max ]; do xterm -e sh -c '(sleep 1; echo "ltest$i"; echo aa; echo -n py i; cat) | ./dgamelaunch -f "$conffile" '& echo -n " $!" - sleep 1 + sleep 0.1 i=$(($i+1)) done echo -- 2.47.3