samples: shell: fix testcase.ini to be more inclusive
Filter was wrong and sample was not being built on any boards. Exclude platforms that do not support interrupt based UART drivers. Jira: ZEP-2014 Change-Id: I84a690e7c93fae52335434830b83086019cfd00d Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
6ad0420b26
commit
dac15b9b71
|
@ -113,14 +113,14 @@ void k_call_stacks_analyze(void)
|
|||
{
|
||||
#if defined(CONFIG_INIT_STACKS) && defined(CONFIG_PRINTK)
|
||||
extern char sys_work_q_stack[CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE];
|
||||
#if defined(CONFIG_ARC)
|
||||
#if defined(CONFIG_ARC) && CONFIG_RGF_NUM_BANKS != 1
|
||||
extern char _firq_stack[CONFIG_FIRQ_STACK_SIZE];
|
||||
#endif /* CONFIG_ARC */
|
||||
|
||||
printk("Kernel stacks:\n");
|
||||
stack_analyze("main ", _main_stack, sizeof(_main_stack));
|
||||
stack_analyze("idle ", _idle_stack, sizeof(_idle_stack));
|
||||
#if defined(CONFIG_ARC)
|
||||
#if defined(CONFIG_ARC) && CONFIG_RGF_NUM_BANKS != 1
|
||||
stack_analyze("firq ", _firq_stack, sizeof(_firq_stack));
|
||||
#endif /* CONFIG_ARC */
|
||||
stack_analyze("interrupt", _interrupt_stack,
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
[test]
|
||||
build_only = true
|
||||
tags = samples
|
||||
filter = UART_CONSOLE
|
||||
filter = CONFIG_UART_CONSOLE
|
||||
arch_exclude = riscv32 nios2
|
||||
|
|
Loading…
Reference in a new issue