diff options
Diffstat (limited to 'test-command.c')
-rw-r--r-- | test-command.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test-command.c b/test-command.c new file mode 100644 index 0000000..f2de29b --- /dev/null +++ b/test-command.c @@ -0,0 +1,24 @@ +/* See LICENSE file for copyright and license details. */ +#include "test-common.h" + +#define LIMIT_BYTES 4098 +#define LIMIT_SECONDS 10 + + +int +main(int argc, char *argv[]) +{ + struct libgeome_context ctx; + struct libgeome_data data; + + if (argc < 2) { + fprintf(stderr, "usage: %s command [argument] ...", argv[0]); + return 1; + } + + test_common_init(&ctx, &data, argv[0]); + if (libgeome_get_from_command(&ctx, &data, LIMIT_BYTES, LIMIT_SECONDS, argv[1], (const void *)&argv[1])) + return 1; + test_common_print(&data); + return 0; +} |