Commit 6a46fcf9 authored by Christian Borntraeger's avatar Christian Borntraeger Committed by Paolo Bonzini

selftests: KVM: s390: fix format strings for access reg test

acrs are 32 bit and not 64 bit.
Reported-by: default avatarAndrew Jones <drjones@redhat.com>
Signed-off-by: default avatarChristian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 53362fe9
...@@ -42,6 +42,13 @@ static void guest_code(void) ...@@ -42,6 +42,13 @@ static void guest_code(void)
" values did not match: 0x%llx, 0x%llx\n", \ " values did not match: 0x%llx, 0x%llx\n", \
left->reg, right->reg) left->reg, right->reg)
#define REG_COMPARE32(reg) \
TEST_ASSERT(left->reg == right->reg, \
"Register " #reg \
" values did not match: 0x%x, 0x%x\n", \
left->reg, right->reg)
static void compare_regs(struct kvm_regs *left, struct kvm_sync_regs *right) static void compare_regs(struct kvm_regs *left, struct kvm_sync_regs *right)
{ {
int i; int i;
...@@ -55,7 +62,7 @@ static void compare_sregs(struct kvm_sregs *left, struct kvm_sync_regs *right) ...@@ -55,7 +62,7 @@ static void compare_sregs(struct kvm_sregs *left, struct kvm_sync_regs *right)
int i; int i;
for (i = 0; i < 16; i++) for (i = 0; i < 16; i++)
REG_COMPARE(acrs[i]); REG_COMPARE32(acrs[i]);
for (i = 0; i < 16; i++) for (i = 0; i < 16; i++)
REG_COMPARE(crs[i]); REG_COMPARE(crs[i]);
...@@ -155,7 +162,7 @@ int main(int argc, char *argv[]) ...@@ -155,7 +162,7 @@ int main(int argc, char *argv[])
"r11 sync regs value incorrect 0x%llx.", "r11 sync regs value incorrect 0x%llx.",
run->s.regs.gprs[11]); run->s.regs.gprs[11]);
TEST_ASSERT(run->s.regs.acrs[0] == 1 << 11, TEST_ASSERT(run->s.regs.acrs[0] == 1 << 11,
"acr0 sync regs value incorrect 0x%llx.", "acr0 sync regs value incorrect 0x%x.",
run->s.regs.acrs[0]); run->s.regs.acrs[0]);
vcpu_regs_get(vm, VCPU_ID, &regs); vcpu_regs_get(vm, VCPU_ID, &regs);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment