summaryrefslogtreecommitdiff
path: root/tests/c/src/main.c
diff options
context:
space:
mode:
authorcyan <cyjan@mrcyjanek.net>2026-03-10 20:23:19 +0100
committerGitHub <noreply@github.com>2026-03-10 20:23:19 +0100
commit7e227b0aa00c66d5d407751cac715e61e0c1c373 (patch)
treeaddd746ecb1dc235d97e6fc7ba5d85bed3f905d2 /tests/c/src/main.c
parent2c11591e02b907e63d8fd4fcb0a6559625934a95 (diff)
Cleanup and fixes (#180)
Diffstat (limited to 'tests/c/src/main.c')
-rw-r--r--tests/c/src/main.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/c/src/main.c b/tests/c/src/main.c
new file mode 100644
index 0000000..0ae418f
--- /dev/null
+++ b/tests/c/src/main.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include "../tests/all.h"
+
+
+int main() {
+ monero_test_creation();
+ monero_test_restore();
+ printf("All tests passed\n");
+ return 0;
+}