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:
Valerio Setti 2024-12-05 09:52:34 +01:00 committed by Benjamin Cabé
commit e3817d0ffc
2 changed files with 12 additions and 0 deletions

View file

@ -35,4 +35,8 @@
supply-gpios = <&test_gpio_0 2 0>;
};
};
chosen {
/delete-property/ zephyr,entropy;
};
};

View file

@ -0,0 +1,8 @@
/ {
chosen {
/* Remove extra unneed devices that cause the "test_unfiltered"
* test to fail.
*/
/delete-property/ zephyr,entropy;
};
};