test: misc|shell: disable "zephyr,entropy" chosen property
When "zephyr,entropy" is enabled the corresponding entropy driver is pulled in the build and initialized during boot. This - changes the initialization sequence expected by "check_init_priorities"; - add one extra device to the expected list in "shell_device_filter". Therefore this commit removes the "zephyr,entropy" propery to return the test to the original state. Signed-off-by: Valerio Setti <vsetti@baylibre.com>
This commit is contained in:
parent
4c43e3b756
commit
e3817d0ffc
2 changed files with 12 additions and 0 deletions
|
@ -35,4 +35,8 @@
|
|||
supply-gpios = <&test_gpio_0 2 0>;
|
||||
};
|
||||
};
|
||||
|
||||
chosen {
|
||||
/delete-property/ zephyr,entropy;
|
||||
};
|
||||
};
|
||||
|
|
8
tests/subsys/shell/shell_device_filter/app.overlay
Normal file
8
tests/subsys/shell/shell_device_filter/app.overlay
Normal file
|
@ -0,0 +1,8 @@
|
|||
/ {
|
||||
chosen {
|
||||
/* Remove extra unneed devices that cause the "test_unfiltered"
|
||||
* test to fail.
|
||||
*/
|
||||
/delete-property/ zephyr,entropy;
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue