summaryrefslogtreecommitdiffstats
path: root/tests/rscript_number_comparison_LT.sh
blob: 5cb729a3c19d67f55f9c27d22f4b142597026c48 (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
#!/bin/bash
# added 2022-01-27 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  = 1111;
set $!higher_nr = 2222;

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'
exit_test