summaryrefslogtreecommitdiff
path: root/test/dm/devres.c
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2020-07-17 00:20:14 +0200
committerSimon Glass <[email protected]>2020-07-25 14:46:57 -0600
commit331caeafad40dd457dbc669c05a9e0d8ebc7095f (patch)
tree543e3a0e9bca963b12b3a1eb94548db76bc397aa /test/dm/devres.c
parent5ab71ea4b18dce9fe5599075c4309ea39b62954f (diff)
test/dm: check if devices exist
Running 'ut dm' on the sandbox without -D or -d results in segmentation faults due to NULL pointer dereferences. Check that device pointers are non-NULL before using them. Use ut_assertnonnull() for pointers instead of ut_assert(). Signed-off-by: Heinrich Schuchardt <[email protected]> Tested-by: Philippe Reynes <[email protected]>
Diffstat (limited to 'test/dm/devres.c')
-rw-r--r--test/dm/devres.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dm/devres.c b/test/dm/devres.c
index b5de0cb191a..550787495dc 100644
--- a/test/dm/devres.c
+++ b/test/dm/devres.c
@@ -153,6 +153,7 @@ static int dm_test_devres_phase(struct unit_test_state *uts)
* allocation created in the bind() method.
*/
ut_assertok(uclass_find_first_device(UCLASS_TEST_DEVRES, &dev));
+ ut_assertnonnull(dev);
devres_get_stats(dev, &stats);
ut_asserteq(1, stats.allocs);
ut_asserteq(TEST_DEVRES_SIZE, stats.total_size);