diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-03-16 18:54:42 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-03-16 18:54:42 +0100 |
commit | 51e690f720b4a53a431e7a536b2fe8c25e866f7d (patch) | |
tree | 6722e6b94d03063db7e0705538976c266c7c934b /tests/omod-if-array.sh | |
parent | 8f8e2cd66bd7f1e35f7bf0678e25bbdb99d67093 (diff) | |
download | rsyslog-51e690f720b4a53a431e7a536b2fe8c25e866f7d.tar.gz rsyslog-51e690f720b4a53a431e7a536b2fe8c25e866f7d.tar.xz rsyslog-51e690f720b4a53a431e7a536b2fe8c25e866f7d.zip |
fixed some portability issues
first noticed on FreeBSD
Also, some cosmetic improvements.
Diffstat (limited to 'tests/omod-if-array.sh')
-rwxr-xr-x | tests/omod-if-array.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/omod-if-array.sh b/tests/omod-if-array.sh index 8a8d67f3..fd845b4d 100755 --- a/tests/omod-if-array.sh +++ b/tests/omod-if-array.sh @@ -1,5 +1,12 @@ -#!/bin/bash -e echo test omod-if-array via udp ./nettester omod-if-array udp +if [ "$?" -ne "0" ]; then + exit 1 +fi + echo test omod-if-array via tcp ./nettester omod-if-array tcp +if [ "$?" -ne "0" ]; then + exit 1 +fi + |