diff options
author | Laurens Valk <laurens@pybricks.com> | 2022-11-21 15:13:24 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2022-11-23 11:44:13 +1100 |
commit | 1d27c7d423f4e7b2c1f2e9b68d99a33ac26d81eb (patch) | |
tree | 68832504f0f63a1bfa7f70f566dd008550bfb2a3 /tests/unix/extra_coverage.py | |
parent | d75f49c0f04280f5725f635a4b041f409a25fa7d (diff) | |
download | micropython-1d27c7d423f4e7b2c1f2e9b68d99a33ac26d81eb.tar.gz micropython-1d27c7d423f4e7b2c1f2e9b68d99a33ac26d81eb.zip |
tests/misc: Add test for cexample module.
This also moves the existing test for cexample.add_ints
originally done in extra_coverage.
Signed-off-by: Laurens Valk <laurens@pybricks.com>
Diffstat (limited to 'tests/unix/extra_coverage.py')
-rw-r--r-- | tests/unix/extra_coverage.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/unix/extra_coverage.py b/tests/unix/extra_coverage.py index 00226a68e6..a51b5b856a 100644 --- a/tests/unix/extra_coverage.py +++ b/tests/unix/extra_coverage.py @@ -49,11 +49,6 @@ print(buf.write(bytearray(16))) # function defined in C++ code print("cpp", extra_cpp_coverage()) -# test user C module -import cexample - -print(cexample.add_ints(3, 2)) - # test user C module mixed with C++ code import cppexample |