diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2020-01-29 14:27:33 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-04-05 15:02:06 +1000 |
commit | 85858e72dfdc3e941c2e620e94de05ad663138b1 (patch) | |
tree | d801c11e07380213b7e2abbb3066e2a90636369c /tools/tinytest-codegen.py | |
parent | 92c83bd16b55daf81157100243ded6d7d0e56538 (diff) |
py/objexcept: Allow compression of exception message text.
The decompression of error-strings is only done if the string is accessed
via printing or via er.args. Tests are added for this feature to ensure
the decompression works.
Diffstat (limited to 'tools/tinytest-codegen.py')
-rwxr-xr-x | tools/tinytest-codegen.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index 64f88edb3..116a217b4 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -89,6 +89,8 @@ exclude_tests = ( # different filename in output "micropython/emg_exc.py", "micropython/heapalloc_traceback.py", + # don't have emergency exception buffer + "micropython/heapalloc_exc_compressed_emg_exc.py", # pattern matching in .exp "micropython/meminfo.py", # needs sys stdfiles |