repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 05bf66dff0cdceeec9e9da317f0b0a90fa135313:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 05bf66dff0cdceeec9e9da317f0b0a90fa135313
Author: Alexander Barton 
Date:   Thu Sep 12 02:27:30 2002 +0000

    - Test-Server wird in aktuelles Verzeichnis als "ngircd-TEST" verlinkt.
    - die PID des Test-ngIRCd wird besser ermittelt.

diff --git a/src/testsuite/start-server.sh b/src/testsuite/start-server.sh
index 51de410ec4f2aa49e5bcd5ddda13f007153089c8..
index ..dae47970fc679dd4c929057b2be6c927710d8bc8 100755
--- a/src/testsuite/start-server.sh
+++ b/src/testsuite/start-server.sh
@@ -1,17 +1,18 @@
 #!/bin/sh
 # ngIRCd Test Suite
-# $Id: start-server.sh,v 1.2 2002/09/09 22:56:07 alex Exp $
+# $Id: start-server.sh,v 1.3 2002/09/12 02:27:30 alex Exp $

 echo "      starting server ..."

+rm -rf logs
+
 echo "This is an ngIRCd Test Server" > ngircd-test.motd

-../ngircd/ngircd -np -f ngircd-test.conf > ngircd-test.log 2>&1 &
+./ngircd-TEST -np -f ${srcdir}/ngircd-test.conf > ngircd-test.log 2>&1 &
 sleep 1

-pid=`ps a | grep ngircd-test | head -n 1 | cut -d ' ' -f 1`
+ps a > procs.tmp
+pid=`cat procs.tmp | grep ngircd-TEST | awk "{ print \\\$1 }"`
 kill -0 $pid > /dev/null 2>&1

-rm -rf logs
-
 # -eof-

-----END OF PAGE-----