aboutsummaryrefslogtreecommitdiffstats
path: root/test/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/main.c')
-rw-r--r--test/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/main.c b/test/main.c
index c0217eb..c87c24c 100644
--- a/test/main.c
+++ b/test/main.c
@@ -22,6 +22,7 @@
#include "float_test.h"
#include "diagnostic_test.h"
#include "gpio_test.h"
+#include "time_test.h"
/* TODO: allow individual tests to be selected */
@@ -30,7 +31,8 @@ int main(int argc, char **argv)
static const struct section sections[] = {
{"float", float_test},
{"diagnostic", diagnostic_test},
- {"gpio", gpio_test} };
+ {"gpio", gpio_test},
+ {"time", time_test} };
size_t i;
if (argc != 3) {