From 32863b34a4e6fdbf0dc40fc8f9fbe76a952c40fb Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Wed, 9 Jul 2025 23:24:35 +0200 Subject: [PATCH] x86: Update msr test to run on qemu-x86_64 This test is not currently enabled. Update it so that it can be enabled on the qemu-x86_64 target. Signed-off-by: Simon Glass --- test/cmd/msr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cmd/msr.c b/test/cmd/msr.c index e9a152ee5bf..8604e481012 100644 --- a/test/cmd/msr.c +++ b/test/cmd/msr.c @@ -12,14 +12,14 @@ static int cmd_test_msr(struct unit_test_state *uts) { ut_assertok(run_commandf("msr read 200")); - ut_assert_nextline("00000000 ffe00006"); + ut_assert_nextline("00000000 00000006"); ut_assert_console_end(); /* change the first variable msr and see it reflected in the mtrr cmd */ ut_assertok(run_commandf("mtrr")); ut_assert_nextline("CPU 65537:"); ut_assert_nextlinen("Reg"); - ut_assert_nextlinen("0 Y Back 00000000ffe00000"); + ut_assert_nextlinen("0 Y Back 0000000000000000"); ut_assertok(console_record_reset_enable()); /* change the type from 6 to 5 */