diff --git a/tests/misc/check_init_priorities/boards/native_sim.overlay b/tests/misc/check_init_priorities/boards/native_sim.overlay index 0f32c8121a8..a2206bb723b 100644 --- a/tests/misc/check_init_priorities/boards/native_sim.overlay +++ b/tests/misc/check_init_priorities/boards/native_sim.overlay @@ -35,4 +35,8 @@ supply-gpios = <&test_gpio_0 2 0>; }; }; + + chosen { + /delete-property/ zephyr,entropy; + }; }; diff --git a/tests/subsys/shell/shell_device_filter/app.overlay b/tests/subsys/shell/shell_device_filter/app.overlay new file mode 100644 index 00000000000..fd5644bcacd --- /dev/null +++ b/tests/subsys/shell/shell_device_filter/app.overlay @@ -0,0 +1,8 @@ +/ { + chosen { + /* Remove extra unneed devices that cause the "test_unfiltered" + * test to fail. + */ + /delete-property/ zephyr,entropy; + }; +};