mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 12:54:37 +00:00

The UT_TESTF_ macros read as 'unit test test flags' which is not right. Rename to UTF ('unit test flags'). This has the benefit of being shorter, which helps keep UNIT_TEST() declarations on a single line. Give the enum a name and reference it from the UNIT_TEST() macros while we are here. Signed-off-by: Simon Glass <sjg@chromium.org>
38 lines
882 B
C
38 lines
882 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2015 Google, Inc
|
|
*/
|
|
|
|
#include <dm.h>
|
|
#include <part.h>
|
|
#include <scsi.h>
|
|
#include <dm/test.h>
|
|
#include <test/test.h>
|
|
#include <test/ut.h>
|
|
|
|
/* Test that sandbox SCSI works correctly */
|
|
static int dm_test_scsi_base(struct unit_test_state *uts)
|
|
{
|
|
const struct disk_partition *info;
|
|
const struct disk_part *part;
|
|
struct udevice *dev;
|
|
|
|
ut_assertok(scsi_scan(false));
|
|
|
|
/*
|
|
* We expect some sort of partition on the disk image, created by
|
|
* test_ut_dm_init()
|
|
*/
|
|
ut_assertok(uclass_first_device_err(UCLASS_PARTITION, &dev));
|
|
|
|
part = dev_get_uclass_plat(dev);
|
|
ut_asserteq(1, part->partnum);
|
|
|
|
info = &part->gpt_part_info;
|
|
ut_asserteq_str("sda1", info->name);
|
|
ut_asserteq_str("U-Boot", info->type);
|
|
ut_asserteq(0x83 /* linux */, info->sys_ind);
|
|
|
|
return 0;
|
|
}
|
|
DM_TEST(dm_test_scsi_base, UTF_SCAN_PDATA | UTF_SCAN_FDT);
|