diff options
Diffstat (limited to 'tests/core/test_01.c')
-rw-r--r-- | tests/core/test_01.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/core/test_01.c b/tests/core/test_01.c index 05d778a0bca4..a3a6a4be3e29 100644 --- a/tests/core/test_01.c +++ b/tests/core/test_01.c @@ -9,6 +9,7 @@ */ #include <stdlib.h> +#include <stdint.h> #include <string.h> #include <unistd.h> @@ -79,6 +80,9 @@ main (int argc, char **argv) xo_open_container_h(NULL, "top"); + xo_emit("{e:kve_start/%#jx}", (uintmax_t) 0xdeadbeef); + xo_emit("{e:kve_end/%#jx}", (uintmax_t) 0xcabb1e); + xo_emit("testing argument modifier {a:}.{a:}...\n", "host", "my-box", "domain", "example.com"); |