summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-05-30 08:42:55 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-05-30 08:42:55 +0200
commit21307645db3b938982b5d2b7b6f48648f62e77e5 (patch)
tree493c8d2476f880acf70186275901eb746c33cec0 /tests
parent7c12000d865b0885c2d5125f14742a54e41a270c (diff)
downloadrsyslog-21307645db3b938982b5d2b7b6f48648f62e77e5.tar.gz
rsyslog-21307645db3b938982b5d2b7b6f48648f62e77e5.tar.xz
rsyslog-21307645db3b938982b5d2b7b6f48648f62e77e5.zip
fixed broken testbench
actually, this test was missing the module path all the time, but we didn't notice it because previously no module needed to be loaded.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/cfg.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cfg.sh b/tests/cfg.sh
index f850c4d1..7610407a 100755
--- a/tests/cfg.sh
+++ b/tests/cfg.sh
@@ -37,7 +37,7 @@ echo "local directory"
#
# check empty config file
#
-../tools/rsyslogd -c4 -N1 -f/dev/null 2>&1 |./ourtail |head -2 > tmp
+../tools/rsyslogd -c4 -N1 -f/dev/null -M../runtime/.libs:../.libs 2>&1 |./ourtail |head -2 > tmp
cmp tmp $srcdir/DevNull.cfgtest
if [ ! $? -eq 0 ]; then
echo "DevNull.cfgtest failed"
@@ -52,7 +52,7 @@ fi;
#
# check missing config file
#
-../tools/rsyslogd -c4 -N1 -f/This/does/not/exist 2>&1 |./ourtail |head -2 > tmp
+../tools/rsyslogd -c4 -N1 -M../runtime/.libs:../.libs -f/This/does/not/exist 2>&1 |./ourtail |head -2 > tmp
cmp tmp $srcdir/NoExistFile.cfgtest
if [ ! $? -eq 0 ]; then
echo "NoExistFile.cfgtest failed"