This is an automated email from the ASF dual-hosted git repository.
acassis pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
from 11c1c6bec system/nxinit: add 'set' builtin command for environment
variables
new 5c3f14ae7 system/nxinit: fix truncated line loss in config parser
new a31fe191f system/nxinit: fix missing blank line after declaration in
parser.c
new 7a1c6aaa7 system/nxinit: fix stack-buffer-overflow in
init_parse_config_buffer
new 63698738a system/nxinit: add cmocka unit tests for
parser/action/service
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
system/nxinit/CMakeLists.txt | 34 ++
system/nxinit/Kconfig | 42 +-
system/nxinit/Makefile | 23 +-
system/nxinit/parser.c | 11 +-
system/nxinit/parser.h | 4 +
.../nxinit/test/test_nxinit.c | 53 ++-
.../nxinit/test/test_nxinit.h | 78 ++--
system/nxinit/test/test_nxinit_action.c | 262 +++++++++++
.../nxinit/test/test_nxinit_common.c | 24 +-
system/nxinit/test/test_nxinit_parser.c | 494 +++++++++++++++++++++
system/nxinit/test/test_nxinit_service.c | 251 +++++++++++
11 files changed, 1176 insertions(+), 100 deletions(-)
copy testing/drivers/drivertest/drivertest_simple.c =>
system/nxinit/test/test_nxinit.c (51%)
copy graphics/input/monkey/monkey_dev.h => system/nxinit/test/test_nxinit.h
(56%)
create mode 100644 system/nxinit/test/test_nxinit_action.c
copy examples/nettest/nettest_host.c =>
system/nxinit/test/test_nxinit_common.c (86%)
create mode 100644 system/nxinit/test/test_nxinit_parser.c
create mode 100644 system/nxinit/test/test_nxinit_service.c