1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#######################################################
#
# Test that we don't barf on unicode escapes in JSON
#
#######################################################
body common control
{
inputs => { "../../default.cf.sub" };
bundlesequence => { default("$(this.promise_filename)") };
version => "1.0";
}
#######################################################
bundle agent check
{
methods:
"" usebundle =>
dcs_passif_output(".*R: response index: unicode\b.*",
".*Error parsing JSON.*",
"$(sys.cf_agent) -KIf $(this.promise_filename).sub",
$(this.promise_filename));
}
|