diff --git a/qemu-arm/test_main.c b/qemu-arm/test_main.c
index ae2beabcd06a562c110bdce08b89ed7433ebe522..5c0c915c48320449e79ccc1610f943614ab1592e 100644
--- a/qemu-arm/test_main.c
+++ b/qemu-arm/test_main.c
@@ -32,7 +32,7 @@ inline void do_str(const char *src) {
     if (nlr_push(&nlr) == 0) {
         qstr source_name = lex->source_name;
         mp_parse_tree_t parse_tree = mp_parse(lex, MP_PARSE_FILE_INPUT);
-        mp_obj_t module_fun = mp_compile(&parse_tree, source_name, MP_EMIT_OPT_NONE, true);
+        mp_obj_t module_fun = mp_compile(&parse_tree, source_name, MP_EMIT_OPT_NONE, false);
         mp_call_function_0(module_fun);
         nlr_pop();
     } else {
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py
index 4c245e85ecfb81e54dcb164fd119c2c1609c4096..3436d0f456c2563a9243beab9dab232c7cc4b177 100755
--- a/tools/tinytest-codegen.py
+++ b/tools/tinytest-codegen.py
@@ -49,7 +49,6 @@ testgroup_member = (
 test_dirs = ('basics', 'micropython', 'float', 'extmod', 'inlineasm') # 'import', 'io', 'misc')
 exclude_tests = (
     'float/float2int_doubleprec.py', # requires double precision floating point to work
-    'micropython/heapalloc_str.py',  # unknown
     'inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py', 'inlineasm/asmfpmuldiv.py', 'inlineasm/asmfpsqrt.py',
     'extmod/ticks_diff.py', 'extmod/time_ms_us.py', 'extmod/uheapq_timeq.py',
     'extmod/machine_pinbase.py', 'extmod/machine_pulse.py',