blob: 71810c693116a3990c75824f2e329843851a01de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/bin/bash
# added by rgerhards
# This file is part of the rsyslog project, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
generate_conf
add_conf '
template(name="outfmt" type="list") {
property(name="$!result")
constant(value="\n")
}
set $!lower_nr = '$LOWER_VAL';
set $!higher_nr = '$HIGHER_VAL';
if $!lower_nr <= $!higher_nr
then { set $!result = "<= RIGHT"; }
else { set $!result = "<= WRONG"; }
action(type="omfile" file="'$RSYSLOG_OUT_LOG'" template="outfmt")
if $!lower_nr < $!higher_nr
then { set $!result = "< RIGHT"; }
else { set $!result = "< WRONG"; }
action(type="omfile" file="'$RSYSLOG_OUT_LOG'" template="outfmt")
if $!higher_nr >= $!lower_nr
then { set $!result = ">= RIGHT"; }
else { set $!result = ">= WRONG"; }
action(type="omfile" file="'$RSYSLOG_OUT_LOG'" template="outfmt")
if $!higher_nr > $!lower_nr
then { set $!result = "> RIGHT"; }
else { set $!result = "> WRONG"; }
action(type="omfile" file="'$RSYSLOG_OUT_LOG'" template="outfmt")
if $!higher_nr != $!lower_nr
then { set $!result = "!= RIGHT"; }
else { set $!result = "!= WRONG"; }
action(type="omfile" file="'$RSYSLOG_OUT_LOG'" template="outfmt")
if $!higher_nr == $!lower_nr
then { set $!result = "== WRONG"; }
else { set $!result = "== RIGHT"; }
action(type="omfile" file="'$RSYSLOG_OUT_LOG'" template="outfmt")
'
startup
shutdown_when_empty
wait_shutdown
content_check '<= RIGHT'
content_check '>= RIGHT'
content_check '!= RIGHT'
content_check '== RIGHT'
content_check '< RIGHT'
content_check '> RIGHT'
exit_test
|