summaryrefslogtreecommitdiffstats
path: root/src/tests/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/main.c')
-rw-r--r--src/tests/main.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/tests/main.c b/src/tests/main.c
new file mode 100644
index 0000000..ad1b0f1
--- /dev/null
+++ b/src/tests/main.c
@@ -0,0 +1,15 @@
+#include <random.h>
+#include "tests/lib.h"
+#include "tests/main.h"
+
+int
+main (int argc UNUSED, char *argv[])
+{
+ test_name = argv[0];
+
+ msg ("begin");
+ random_init (0);
+ test_main ();
+ msg ("end");
+ return 0;
+}