Commit e3817d0f authored by Valerio Setti's avatar Valerio Setti Committed by Benjamin Cabé
Browse files

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: default avatarValerio Setti <vsetti@baylibre.com>
parent 4c43e3b7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -35,4 +35,8 @@
			supply-gpios = <&test_gpio_0 2 0>;
		};
	};

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