Blame tests/field_float_v1.sh

Packit 1422b7
# added 2015-02-25 by singh.janmejay
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
. $srcdir/exec.sh
Packit 1422b7
Packit 1422b7
test_def $0 "float field"
Packit 1422b7
add_rule 'rule=:here is a number %num:float% in floating pt form'
Packit 1422b7
execute 'here is a number 15.9 in floating pt form'
Packit 1422b7
assert_output_json_eq '{"num": "15.9"}'
Packit 1422b7
Packit 1422b7
reset_rules
Packit 1422b7
Packit 1422b7
add_rule 'rule=:here is a negative number %num:float% for you'
Packit 1422b7
execute 'here is a negative number -4.2 for you'
Packit 1422b7
assert_output_json_eq '{"num": "-4.2"}'
Packit 1422b7
Packit 1422b7
reset_rules
Packit 1422b7
Packit 1422b7
add_rule 'rule=:here is another real number %real_no:float%.'
Packit 1422b7
execute 'here is another real number 2.71.'
Packit 1422b7
assert_output_json_eq '{"real_no": "2.71"}'
Packit 1422b7
Packit 1422b7
Packit 1422b7
cleanup_tmp_files
Packit 1422b7