summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-05-30 08:37:35 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-05-30 08:37:35 +0200
commit7c12000d865b0885c2d5125f14742a54e41a270c (patch)
treee4983ca443c21fa54c20987ca39f523f32bf7554 /tests
parenta9223031a6effeaf3673beb752c12a29f5e8f83d (diff)
downloadrsyslog-7c12000d865b0885c2d5125f14742a54e41a270c.tar.gz
rsyslog-7c12000d865b0885c2d5125f14742a54e41a270c.tar.xz
rsyslog-7c12000d865b0885c2d5125f14742a54e41a270c.zip
regression fix: config validation code affected by recent changes
did not return with proper return value
Diffstat (limited to 'tests')
-rwxr-xr-xtests/validation-run.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/validation-run.sh b/tests/validation-run.sh
index cc29482a..a68ee8ae 100755
--- a/tests/validation-run.sh
+++ b/tests/validation-run.sh
@@ -25,16 +25,19 @@ echo \[validation-run.sh\]: testing configuraton validation
echo "testing a failed configuration verification run"
../tools/rsyslogd -dn -u2 -c4 -N1 -f$srcdir/testsuites/invalid.conf -M../runtime/.libs:../.libs
if [ $? -ne 1 ]; then
+ echo "after test 1: return code ne 1"
exit 1
fi
echo testing a valid config verification run
../tools/rsyslogd -u2 -c4 -N1 -f$srcdir/testsuites/valid.conf -M../runtime/.libs:../.libs
if [ $? -ne 0 ]; then
+ echo "after test 2: return code ne 0"
exit 1
fi
echo testing empty config file
../tools/rsyslogd -u2 -c4 -N1 -f/dev/null -M../runtime/.libs:../.libs
if [ $? -ne 1 ]; then
+ echo "after test 3: return code ne 1"
exit 1
fi
echo SUCCESS: validation run tests