aboutsummaryrefslogtreecommitdiff
path: root/test/dm/cpu.c
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2020-05-03 21:58:49 +0800
committerStefano Babic <sbabic@denx.de>2020-05-03 15:45:49 +0200
commit143f0eeddda915bfbd6c8024a667c37084d4bdc2 (patch)
tree330919c79e5601e6ea1362e179ea08bbefdbbe05 /test/dm/cpu.c
parentb1e894ff500819654cea82ab2f20cd4d91b4c5c2 (diff)
downloadu-boot-143f0eeddda915bfbd6c8024a667c37084d4bdc2.zip
u-boot-143f0eeddda915bfbd6c8024a667c37084d4bdc2.tar.gz
u-boot-143f0eeddda915bfbd6c8024a667c37084d4bdc2.tar.bz2
test: cpu: test current cpu
Add test whether the CPU is U-Boot is running from. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'test/dm/cpu.c')
-rw-r--r--test/dm/cpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/dm/cpu.c b/test/dm/cpu.c
index e6dc576..def9b64 100644
--- a/test/dm/cpu.c
+++ b/test/dm/cpu.c
@@ -26,6 +26,8 @@ static int dm_test_cpu(struct unit_test_state *uts)
ut_assert(dev->flags & DM_FLAG_ACTIVATED);
ut_assertok(uclass_get_device_by_name(UCLASS_CPU, "cpu-test1", &dev));
+ ut_asserteq_ptr(cpu_get_current_dev(), dev);
+ ut_asserteq(cpu_is_current(dev), 1);
ut_assertok(cpu_get_desc(dev, text, sizeof(text)));
ut_assertok(strcmp(text, "LEG Inc. SuperMegaUltraTurbo CPU No. 1"));