1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> 4 */ 5 6 #include <common.h> 7 #include <dm.h> 8 #include <virtio_types.h> 9 #include <virtio.h> 10 #include <dm/device-internal.h> 11 #include <dm/root.h> 12 #include <dm/test.h> 13 #include <dm/uclass-internal.h> 14 #include <test/test.h> 15 #include <test/ut.h> 16 17 /* Test of the virtio driver that does not have required driver ops */ dm_test_virtio_missing_ops(struct unit_test_state * uts)18static int dm_test_virtio_missing_ops(struct unit_test_state *uts) 19 { 20 struct udevice *bus; 21 22 /* find the virtio device */ 23 ut_assertok(uclass_find_device(UCLASS_VIRTIO, 1, &bus)); 24 25 /* 26 * Probe the device should fail with error -ENOENT. 27 * See ops check in virtio_uclass_pre_probe(). 28 */ 29 ut_asserteq(-ENOENT, device_probe(bus)); 30 31 return 0; 32 } 33 DM_TEST(dm_test_virtio_missing_ops, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT); 34