summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-10-22 10:48:41 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-10-22 10:48:41 +0200
commitede5d1a1217a9101e0288a1ef7cc6c06f2705564 (patch)
treebf300267751239a6ac4c947a8eda303ef6f46dfa
parent3d0122be52faa6009f43f151a1ca24cf30ef12cc (diff)
downloadrsyslog-ede5d1a1217a9101e0288a1ef7cc6c06f2705564.tar.gz
rsyslog-ede5d1a1217a9101e0288a1ef7cc6c06f2705564.tar.bz2
rsyslog-ede5d1a1217a9101e0288a1ef7cc6c06f2705564.zip
testbench: -c option no longer exists
-rwxr-xr-xtests/diag.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/diag.sh b/tests/diag.sh
index b278d2c5..bd38b29d 100755
--- a/tests/diag.sh
+++ b/tests/diag.sh
@@ -36,12 +36,12 @@ case $1 in
;;
'startup') # start rsyslogd with default params. $2 is the config file name to use
# returns only after successful startup, $3 is the instance (blank or 2!)
- $valgrind ../tools/rsyslogd -c6 -u2 -n -irsyslog$3.pid -M../runtime/.libs:../.libs -f$srcdir/testsuites/$2 &
+ $valgrind ../tools/rsyslogd -u2 -n -irsyslog$3.pid -M../runtime/.libs:../.libs -f$srcdir/testsuites/$2 &
$srcdir/diag.sh wait-startup $3
;;
'startup-vg') # start rsyslogd with default params under valgrind control. $2 is the config file name to use
# returns only after successful startup, $3 is the instance (blank or 2!)
- valgrind --log-fd=1 --error-exitcode=10 --malloc-fill=ff --free-fill=fe --leak-check=full ../tools/rsyslogd -c6 -u2 -n -irsyslog$3.pid -M../runtime/.libs:../.libs -f$srcdir/testsuites/$2 &
+ valgrind --log-fd=1 --error-exitcode=10 --malloc-fill=ff --free-fill=fe --leak-check=full ../tools/rsyslogd -u2 -n -irsyslog$3.pid -M../runtime/.libs:../.libs -f$srcdir/testsuites/$2 &
$srcdir/diag.sh wait-startup $3
;;
'wait-startup') # wait for rsyslogd startup ($2 is the instance)