aboutsummaryrefslogtreecommitdiff
path: root/apps/test/test.c
diff options
context:
space:
mode:
authorMarvin Borner2021-04-24 22:44:13 +0200
committerMarvin Borner2021-04-24 22:44:13 +0200
commitcd46cefdd74b9ad0b225706f4d4b5864e87d97d6 (patch)
treebb52639e3b75d346447ddb6a709a875a099a190f /apps/test/test.c
parent5c708d6c25321a2ea7a985e6f9f8b2a5ed84c74f (diff)
Started syscall fuzzer
Diffstat (limited to 'apps/test/test.c')
-rw-r--r--apps/test/test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/test/test.c b/apps/test/test.c
index ac1bb2c..2101412 100644
--- a/apps/test/test.c
+++ b/apps/test/test.c
@@ -1,5 +1,7 @@
// MIT License, Copyright (c) 2020 Marvin Borner
+#include "test.h"
+
#include <conv.h>
#include <crypto.h>
#include <math.h>
@@ -93,6 +95,8 @@ int main(void)
test_conv();
test_mem();
+ /* fuzz(); */
+
if (failed)
log("%d tests failed\n", failed);
else