summaryrefslogtreecommitdiff
path: root/ioreplay/src/utests.c
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2018-03-02 12:03:40 +0000
committerPaul Buetow <pbuetow@mimecast.com>2018-03-02 12:03:40 +0000
commit0fecc645618380829406002fddc80b34be56c5f2 (patch)
treec761c63b50cb00991db1097864d3c360dd64702a /ioreplay/src/utests.c
parent56f8cdff9aaa9bf00c5dc9441a7569374f2cbafb (diff)
Increase rlimits before dropping root
Diffstat (limited to 'ioreplay/src/utests.c')
-rw-r--r--ioreplay/src/utests.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/ioreplay/src/utests.c b/ioreplay/src/utests.c
index 5812a66..7cc4959 100644
--- a/ioreplay/src/utests.c
+++ b/ioreplay/src/utests.c
@@ -18,13 +18,24 @@
#include "datas/hmap.h"
#include "datas/list.h"
#include "datas/rbuffer.h"
+#include "utils/utils.h"
void utests_run()
{
- fprintf(stderr, "Running unit tests\n");
+ fprintf(stderr, "Running utils_test()\n");
+ utils_test();
+
+ fprintf(stderr, "Running amap_test()\n");
amap_test();
+
+ fprintf(stderr, "Running hmap_test()\n");
hmap_test();
+
+ fprintf(stderr, "Running list_test()\n");
list_test();
+
+ fprintf(stderr, "Running rbuffer_test()\n");
rbuffer_test();
+
fprintf(stderr, "Great success, run all unit tests without any errors!\n");
}