aboutsummaryrefslogtreecommitdiffstats
path: root/test-time.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-25 21:47:16 +0100
committerMattias Andrée <m@maandree.se>2025-03-25 21:47:16 +0100
commit024cf2f59a7ee23f46140932b7b617f1f3fc1508 (patch)
tree0a2203ffa897b652f75eaefa14ea066774b63b55 /test-time.c
parentreadme: list optional dependencies + update todo (diff)
downloadlibgeome-024cf2f59a7ee23f46140932b7b617f1f3fc1508.tar.gz
libgeome-024cf2f59a7ee23f46140932b7b617f1f3fc1508.tar.bz2
libgeome-024cf2f59a7ee23f46140932b7b617f1f3fc1508.tar.xz
Add tests and some fixes1.0
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'test-time.c')
-rw-r--r--test-time.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/test-time.c b/test-time.c
new file mode 100644
index 0000000..a717b39
--- /dev/null
+++ b/test-time.c
@@ -0,0 +1,21 @@
+/* See LICENSE file for copyright and license details. */
+#include "test-common.h"
+
+
+int
+main(int argc, char *argv[])
+{
+ struct libgeome_context ctx;
+ struct libgeome_data data;
+
+ if (argc != 1) {
+ fprintf(stderr, "usage: %s", argv[0]);
+ return 1;
+ }
+
+ test_common_init(&ctx, &data, argv[0]);
+ if (libgeome_get_from_time(&ctx, &data))
+ return 1;
+ test_common_print(&data);
+ return 0;
+}