summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2018-11-23 08:03:23 +0000
committerPaul Buetow <paul@buetow.org>2018-11-23 08:03:23 +0000
commit691f64e5640e5dc44d9756ea4d6b9c94e0b4b1c5 (patch)
treeb3f8af8949212f8e5850d7f1c9cd6351a5ef8440
parent816d95aeee7cbc12c11af409800b07397794a4e4 (diff)
run amap utests last
-rw-r--r--ioriot/src/utests.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ioriot/src/utests.c b/ioriot/src/utests.c
index 7cae7e8..8a54f42 100644
--- a/ioriot/src/utests.c
+++ b/ioriot/src/utests.c
@@ -26,9 +26,6 @@ void utests_run()
fprintf(stderr, "Running btree_test()\n");
btree_test();
- fprintf(stderr, "Running amap_test()\n");
- amap_test();
-
fprintf(stderr, "Running hmap_test()\n");
hmap_test();
@@ -41,5 +38,8 @@ void utests_run()
fprintf(stderr, "Running utils_test()\n");
utils_test();
+ fprintf(stderr, "Running amap_test()\n");
+ amap_test();
+
fprintf(stderr, "Great success, run all unit tests without any errors!\n");
}