summaryrefslogtreecommitdiff
path: root/ports/zephyr/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/zephyr/main.c')
-rw-r--r--ports/zephyr/main.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/ports/zephyr/main.c b/ports/zephyr/main.c
index 2ae5fd222..c4a135aa5 100644
--- a/ports/zephyr/main.c
+++ b/ports/zephyr/main.c
@@ -59,13 +59,6 @@
#include "modmachine.h"
#include "modzephyr.h"
-#ifdef TEST
-#include "shared/upytesthelper/upytesthelper.h"
-#include "lib/tinytest/tinytest.c"
-#include "shared/upytesthelper/upytesthelper.c"
-#include TEST
-#endif
-
static char heap[MICROPY_HEAP_SIZE];
void init_zephyr(void) {
@@ -128,13 +121,6 @@ int real_main(void) {
init_zephyr();
mp_hal_init();
- #ifdef TEST
- static const char *argv[] = {"test"};
- upytest_set_heap(heap, heap + sizeof(heap));
- int r = tinytest_main(1, argv, groups);
- printf("status: %d\n", r);
- #endif
-
soft_reset:
#if MICROPY_ENABLE_GC
gc_init(heap, heap + sizeof(heap));