mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-19 07:45:22 +00:00
This adds the following tests: help tests: shell_exec(help): 0 shell_exec(help dummy): 0 shell_exec(help invalid): -22 select tests: shell_exec(select): 0 shell_exec(select dummy): 0 shell_exec(select invalid): -22 module tests: shell_exec(dummy cmd1): 0 shell_exec(dummy cmd1 arg1): -22 shell_exec(dummy cmd2 arg1): 0 shell_exec(dummy cmd2 arg1 arg2): -22 shell_exec(dummy cmd3 arg1 arg2): 0 shell_exec(dummy cmd3 arg1 arg2 arg3): -22 shell_exec(dummy cmd4 arg1 arg2 arg3): -22 shell_exec(cmd1): 0 shell_exec(cmd1 arg1): -22 shell_exec(cmd2 arg1): 0 shell_exec(cmd2 arg1 arg2): -22 shell_exec(cmd3 arg1 arg2): 0 shell_exec(cmd3 arg1 arg2 arg3): -22 shell_exec(cmd4 arg1 arg2 arg3): -22 app handler tests: shell_exec(cmd4 arg1 arg2 arg3): 0 Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
5 lines
77 B
Makefile
5 lines
77 B
Makefile
BOARD ?= qemu_x86
|
|
CONF_FILE = prj.conf
|
|
|
|
include ${ZEPHYR_BASE}/Makefile.test
|