]> arthur.barton.de Git - ngircd-alex.git/commitdiff
- Flags bei "ps" werden in anderer Reihenfolge geprueft (aus CVS-HEAD).
authorAlexander Barton <alex@barton.de>
Fri, 20 Sep 2002 13:46:22 +0000 (13:46 +0000)
committerAlexander Barton <alex@barton.de>
Fri, 20 Sep 2002 13:46:22 +0000 (13:46 +0000)
src/testsuite/start-server.sh
src/testsuite/stop-server.sh

index 8b1550395b95839f4a6541efd57ccb81d88ce39e..3c9f1bccfece848831832d064b750fd001ace8f1 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 # ngIRCd Test Suite
-# $Id: start-server.sh,v 1.5 2002/09/16 09:53:16 alex Exp $
+# $Id: start-server.sh,v 1.5.2.1 2002/09/20 13:46:22 alex Exp $
 
 echo "      starting server ..."
 
@@ -11,9 +11,9 @@ echo "This is an ngIRCd Test Server" > ngircd-test.motd
 ./ngircd-TEST -np -f ${srcdir}/ngircd-test.conf > ngircd-test.log 2>&1 &
 sleep 1
 
-PS_FLAGS=a; PS_PIDCOL=1
-ps a > /dev/null 2>&1
-if [ $? -ne 0 ]; then PS_FLAGS=-f; PS_PIDCOL=2; fi
+PS_FLAGS=-f; PS_PIDCOL=2
+ps $PS_FLAGS > /dev/null 2>&1
+if [ $? -ne 0 ]; then PS_FLAGS=a; PS_PIDCOL=1; fi
 
 ps $PS_FLAGS > procs.tmp
 pid=`cat procs.tmp | grep ngircd-TEST | awk "{ print \\\$$PS_PIDCOL }"`
index af28bae1b567d40ad2073f23824f6b6b8dced88b..e9acbb31baa276b320a1e50046892defc4e69a48 100755 (executable)
@@ -1,12 +1,12 @@
 #!/bin/sh
 # ngIRCd Test Suite
-# $Id: stop-server.sh,v 1.4 2002/09/16 09:53:16 alex Exp $
+# $Id: stop-server.sh,v 1.4.2.1 2002/09/20 13:46:22 alex Exp $
 
 echo "      stopping server ..."
 
-PS_FLAGS=a; PS_PIDCOL=1
-ps a > /dev/null 2>&1
-if [ $? -ne 0 ]; then PS_FLAGS=-f; PS_PIDCOL=2; fi
+PS_FLAGS=-f; PS_PIDCOL=2
+ps $PS_FLAGS > /dev/null 2>&1
+if [ $? -ne 0 ]; then PS_FLAGS=a; PS_PIDCOL=1; fi
 
 ps $PS_FLAGS > procs.tmp
 pid=`cat procs.tmp | grep ngircd-TEST | awk "{ print \\\$$PS_PIDCOL }"`