From d8a3f1404382b338571624794254c606d0ef3e99 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Mon, 4 Jun 2018 22:12:57 +0200 Subject: added local win32 fork of json-c here --- .../json-c/tests/test1Formatted_spaced.expected | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/3rdParty/json-c/tests/test1Formatted_spaced.expected (limited to 'src/3rdParty/json-c/tests/test1Formatted_spaced.expected') diff --git a/src/3rdParty/json-c/tests/test1Formatted_spaced.expected b/src/3rdParty/json-c/tests/test1Formatted_spaced.expected new file mode 100644 index 0000000..e36aaa4 --- /dev/null +++ b/src/3rdParty/json-c/tests/test1Formatted_spaced.expected @@ -0,0 +1,36 @@ +my_string= +my_string.to_string()="\t" +my_string=\ +my_string.to_string()="\\" +my_string=foo +my_string.to_string()="foo" +my_int=9 +my_int.to_string()=9 +my_array= + [0]=1 + [1]=2 + [2]=3 + [3]=null + [4]=5 +my_array.to_string()=[ 1, 2, 3, null, 5 ] +my_array= + [0]=3 + [1]=1 + [2]=2 + [3]=null + [4]=0 +my_array.to_string()=[ 3, 1, 2, null, 0 ] +my_array= + [0]=null + [1]=0 + [2]=1 + [3]=2 + [4]=3 +my_array.to_string()=[ null, 0, 1, 2, 3 ] +baz_obj.to_string()="fark" +my_object= + abc: 12 + foo: "bar" + bool0: false + bool1: true +my_object.to_string()={ "abc": 12, "foo": "bar", "bool0": false, "bool1": true } -- cgit v1.2.3-54-g00ecf