summaryrefslogtreecommitdiff
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-04-16 09:29:13 +1000
committerDamien George <damien@micropython.org>2024-06-21 16:21:29 +1000
commita19214d897f7891d177dc22bb8fc555f7e6b65bb (patch)
treef1761a45679957a672138bef2bacbf8b0cbeefef /tests/run-tests.py
parent9dbc787ce8dda9df39eb68c03de144155b2253f0 (diff)
py/emitnative: Place thrown value in dedicated local variable.
A value thrown/injected into a native generator needs to be stored in a dedicated variable outside `nlr_buf_t`, following the `inject_exc` variable in `py/vm.c`. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-xtests/run-tests.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index fa6c2a033..a551f35c6 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -731,10 +731,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1):
skip_tests.add("basics/sys_tracebacklimit.py") # requires traceback info
skip_tests.add("basics/try_finally_return2.py") # requires raise_varargs
skip_tests.add("basics/unboundlocal.py") # requires checking for unbound local
- skip_tests.add("extmod/asyncio_event.py") # unknown issue
skip_tests.add("extmod/asyncio_lock.py") # requires async with
- skip_tests.add("extmod/asyncio_micropython.py") # unknown issue
- skip_tests.add("extmod/asyncio_wait_for.py") # unknown issue
skip_tests.add("misc/features.py") # requires raise_varargs
skip_tests.add(
"misc/print_exception.py"