diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-02-06 15:15:58 -0600 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-02-06 15:15:58 -0600 |
| commit | fb8f08fd5718900d1a709f8a57d61e59cdfecf61 (patch) | |
| tree | 091028ecf723d3c5d93f637648e3cb8e97172c4d /test/kvm-step.c | |
| parent | 8d018c17170a3b623f48de5282955b817a6284f3 (diff) | |
| download | cachepc-fb8f08fd5718900d1a709f8a57d61e59cdfecf61.tar.gz cachepc-fb8f08fd5718900d1a709f8a57d61e59cdfecf61.zip | |
Add aes crypto stepping initial test
Diffstat (limited to 'test/kvm-step.c')
| -rw-r--r-- | test/kvm-step.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/kvm-step.c b/test/kvm-step.c index 4c1b6b5..7f42d6d 100644 --- a/test/kvm-step.c +++ b/test/kvm-step.c @@ -106,9 +106,6 @@ main(int argc, const char **argv) do { ret = ioctl(kvm.vcpufd, KVM_RUN, NULL); if (ret < 0) err(1, "KVM_RUN"); - - if (kvm.run->exit_reason == KVM_EXIT_HLT) - printf("VM halt\n"); } while (kvm.run->exit_reason == KVM_EXIT_HLT); printf("VM exit\n"); @@ -176,7 +173,7 @@ main(int argc, const char **argv) if (ret) err(1, "KVM_CPC_ACK_EVENT"); eventcnt = 0; - while (eventcnt < 110) { + while (eventcnt < 61) { eventcnt += monitor(&kvm, false); } |
