1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015 Google, Inc
10 #include <test/test.h>
13 /* Test that sandbox SCSI works correctly */
14 static int dm_test_scsi_base(struct unit_test_state *uts)
16 const struct disk_partition *info;
17 const struct disk_part *part;
20 ut_assertok(scsi_scan(false));
23 * We expect some sort of partition on the disk image, created by
26 ut_assertok(uclass_first_device_err(UCLASS_PARTITION, &dev));
28 part = dev_get_uclass_plat(dev);
29 ut_asserteq(1, part->partnum);
31 info = &part->gpt_part_info;
32 ut_asserteq_str("sda1", info->name);
33 ut_asserteq_str("U-Boot", info->type);
34 ut_asserteq(0x83 /* linux */, info->sys_ind);
38 DM_TEST(dm_test_scsi_base, UTF_SCAN_PDATA | UTF_SCAN_FDT);