diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-05-29 10:10:27 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 14:12:02 +0100 |
commit | 529d3e0b43d161475023437e947624550687f092 (patch) | |
tree | 6098bcaf30410df7d475e1d5586696fdb05f47db /wrap-json.test.result | |
parent | 05e303a4cd6a22251ff65686bf176a1deb27ef5b (diff) |
wrap-json: Add clone facility
This adds 3 new facilities:
- wrap_json_clone: clones any json object superficially
- wrap_json_clone_deep: clones any json object deeply
- wrap_json_add: adds to an object the fields of an other object
Change-Id: I3844d972aa6477c9dde6f66ad0b0604284a853a7
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'wrap-json.test.result')
-rw-r--r-- | wrap-json.test.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wrap-json.test.result b/wrap-json.test.result index b7acbb5..0edaf75 100644 --- a/wrap-json.test.result +++ b/wrap-json.test.result @@ -394,6 +394,12 @@ unpack("{\"foo\":42}", "{s?isi!}", "baz", &xi[0], "foo", &xi[1]) unpack("\"Pz8_Pz8_P2hlbGxvPj4-Pj4-Pg\"", "y", &xy[0], &xz[0]) SUCCESS y/19:???????hello>>>>>>> +unpack("\"\"", "y", &xy[0], &xz[0]) + SUCCESS y/0: + +unpack("null", "y", &xy[0], &xz[0]) + SUCCESS y/0: + unpack("{\"foo\":\"Pz8_Pz8_P2hlbGxvPj4-Pj4-Pg\"}", "{s?y}", "foo", &xy[0], &xz[0]) SUCCESS s:foo y/19:???????hello>>>>>>> |