Blame tests/very_long_logline_jsoncnf.sh
|
Packit |
1422b7 |
# added 2015-09-21 by singh.janmejay
|
|
Packit |
1422b7 |
# This file is part of the liblognorm project, released under ASL 2.0
|
|
Packit |
1422b7 |
. $srcdir/exec.sh
|
|
Packit |
1422b7 |
|
|
Packit |
1422b7 |
msg="foo"
|
|
Packit |
1422b7 |
for i in $(seq 1 10); do
|
|
Packit |
1422b7 |
msg="${msg},${msg},abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ${i}"
|
|
Packit |
1422b7 |
done
|
|
Packit |
1422b7 |
|
|
Packit |
1422b7 |
test_def $0 "float field"
|
|
Packit |
1422b7 |
add_rule 'version=2'
|
|
Packit |
1422b7 |
add_rule 'rule=:%{"name":"line", "type":"rest"}%'
|
|
Packit |
1422b7 |
execute $msg
|
|
Packit |
1422b7 |
assert_output_json_eq "{\"line\": \"$msg\"}"
|
|
Packit |
1422b7 |
|
|
Packit |
1422b7 |
cleanup_tmp_files
|
|
Packit |
1422b7 |
|