mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
913f74b90b
For the RIOT port of Lua, the module loader has been more or less rewritten to allow for easily integrating source modules defined in static arrays and C modules embedded in the application. So far the loader had not been tested (and a bug was found). This test should give a bit more certainty that the RIOT integration works as it should.
9 lines
325 B
Plaintext
9 lines
325 B
Plaintext
Test modified LUA module loader
|
|
===============================
|
|
|
|
This test defines a bunch of dummy modules, both in
|
|
pure lua and in C. The way modules are declares is not "nice"
|
|
in the sense that it is not the way it would be done in a big
|
|
application. The goal is to test the module loader code, and not
|
|
the build tooling.
|