Blame tests/parser_LF.sh

Packit 1422b7
# added 2015-07-15 by Rainer Gerhards
Packit 1422b7
# This checks if whitespace inside parser definitions is properly treated
Packit 1422b7
# This file is part of the liblognorm project, released under ASL 2.0
Packit 1422b7
Packit 1422b7
uname -a | grep "SunOS.*5.10"
Packit 1422b7
if [ $? -eq 0 ] ; then
Packit 1422b7
   echo platform: `uname -a`
Packit 1422b7
   echo This looks like solaris 10, we disable known-failing tests to
Packit 1422b7
   echo permit OpenCSW to build packages. However, this are real failurs
Packit 1422b7
   echo and so a fix should be done as soon as time permits.
Packit 1422b7
   exit 77
Packit 1422b7
fi
Packit 1422b7
Packit 1422b7
. $srcdir/exec.sh
Packit 1422b7
test_def $0 "LF in parser definition"
Packit 1422b7
Packit 1422b7
add_rule 'rule=:here is a number %
Packit 1422b7
                num:hexnumber
Packit 1422b7
                % in hex form'
Packit 1422b7
execute 'here is a number 0x1234 in hex form'
Packit 1422b7
assert_output_json_eq '{"num": "0x1234"}'
Packit 1422b7
Packit 1422b7
#check cases where parsing failure must occur
Packit 1422b7
execute 'here is a number 0x1234in hex form'
Packit 1422b7
assert_output_json_eq '{ "originalmsg": "here is a number 0x1234in hex form", "unparsed-data": "0x1234in hex form" }'
Packit 1422b7
Packit 1422b7
cleanup_tmp_files