summary refs log tree commit diff
path: root/src/testsuite/wait-tests.sh
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2004-09-04 15:44:45 +0000
committerAlexander Barton <alex@barton.de>2004-09-04 15:44:45 +0000
commit7ec11de523b4e6dccaed45b0b5040886004f5dfb (patch)
treef2be322dc8a603ad81140901dc01a7a3f80012e1 /src/testsuite/wait-tests.sh
parent18eb92a72b7e41f9f082740d1a9328543f8c172f (diff)
downloadngircd-7ec11de523b4e6dccaed45b0b5040886004f5dfb.tar.gz
ngircd-7ec11de523b4e6dccaed45b0b5040886004f5dfb.zip
Two new scripts: test-loop.sh and wait-tests.sh
Diffstat (limited to 'src/testsuite/wait-tests.sh')
-rwxr-xr-xsrc/testsuite/wait-tests.sh37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/testsuite/wait-tests.sh b/src/testsuite/wait-tests.sh
new file mode 100755
index 00000000..70f669f4
--- /dev/null
+++ b/src/testsuite/wait-tests.sh
@@ -0,0 +1,37 @@
+#!/bin/sh
+#
+# ngIRCd Test Suite
+# Copyright (c)2002-2004 by Alexander Barton (alex@barton.de)
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+# Please read the file COPYING, README and AUTHORS for more information.
+#
+# $Id: wait-tests.sh,v 1.1 2004/09/04 15:44:45 alex Exp $
+#
+
+[ "$1" -gt 0 ] 2> /dev/null && MAX="$1" || MAX=5
+
+msg=0
+while true; do
+  count=`ps | grep "expect " | wc -l`
+  count=`expr $count - 1`
+
+  [ $count -le $MAX ] && break
+
+  if [ $msg -lt 1 ]; then
+    echo -n "      waiting for test scripts to settle: "
+    msg=1
+  fi
+
+  # there are still clients connected. Wait ...
+  echo -n "$count>$MAX "
+  sleep 1
+done
+
+[ $msg -gt 0 ] && echo "done: $count"
+exit 0
+
+# -eof-