mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +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>
		
	
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			633 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			633 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Test for Primary-to-Sideband bus (P2SB)
 | |
|  *
 | |
|  * Copyright 2019 Google LLC
 | |
|  */
 | |
| 
 | |
| #include <dm.h>
 | |
| #include <p2sb.h>
 | |
| #include <asm/test.h>
 | |
| #include <dm/test.h>
 | |
| #include <test/ut.h>
 | |
| 
 | |
| /* Base test of the PMC uclass */
 | |
| static int dm_test_p2sb_base(struct unit_test_state *uts)
 | |
| {
 | |
| 	struct udevice *dev;
 | |
| 
 | |
| 	sandbox_set_enable_memio(true);
 | |
| 	ut_assertok(uclass_get_device_by_name(UCLASS_AXI, "adder", &dev));
 | |
| 	ut_asserteq(0x03000004, pcr_read32(dev, 4));
 | |
| 	ut_asserteq(0x300, pcr_read16(dev, 6));
 | |
| 	ut_asserteq(4, pcr_read8(dev, 4));
 | |
| 
 | |
| 	return 0;
 | |
| }
 | |
| DM_TEST(dm_test_p2sb_base, UTF_SCAN_PDATA | UTF_SCAN_FDT);
 |