Commit f982fb62 authored by Vitaly Kuznetsov's avatar Vitaly Kuznetsov Committed by Paolo Bonzini

selftests: kvm: make hardware_disable_test less verbose

hardware_disable_test produces 512 snippets like
...
 main: [511] waiting semaphore
 run_test: [511] start vcpus
 run_test: [511] all threads launched
 main: [511] waiting 368us
 main: [511] killing child

and this doesn't have much value, let's print this info with pr_debug().
Signed-off-by: default avatarVitaly Kuznetsov <vkuznets@redhat.com>
Message-Id: <20210323104331.1354800-1-vkuznets@redhat.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 1973cadd
...@@ -108,7 +108,7 @@ static void run_test(uint32_t run) ...@@ -108,7 +108,7 @@ static void run_test(uint32_t run)
kvm_vm_elf_load(vm, program_invocation_name, 0, 0); kvm_vm_elf_load(vm, program_invocation_name, 0, 0);
vm_create_irqchip(vm); vm_create_irqchip(vm);
fprintf(stderr, "%s: [%d] start vcpus\n", __func__, run); pr_debug("%s: [%d] start vcpus\n", __func__, run);
for (i = 0; i < VCPU_NUM; ++i) { for (i = 0; i < VCPU_NUM; ++i) {
vm_vcpu_add_default(vm, i, guest_code); vm_vcpu_add_default(vm, i, guest_code);
payloads[i].vm = vm; payloads[i].vm = vm;
...@@ -124,7 +124,7 @@ static void run_test(uint32_t run) ...@@ -124,7 +124,7 @@ static void run_test(uint32_t run)
check_set_affinity(throw_away, &cpu_set); check_set_affinity(throw_away, &cpu_set);
} }
} }
fprintf(stderr, "%s: [%d] all threads launched\n", __func__, run); pr_debug("%s: [%d] all threads launched\n", __func__, run);
sem_post(sem); sem_post(sem);
for (i = 0; i < VCPU_NUM; ++i) for (i = 0; i < VCPU_NUM; ++i)
check_join(threads[i], &b); check_join(threads[i], &b);
...@@ -147,16 +147,16 @@ int main(int argc, char **argv) ...@@ -147,16 +147,16 @@ int main(int argc, char **argv)
if (pid == 0) if (pid == 0)
run_test(i); /* This function always exits */ run_test(i); /* This function always exits */
fprintf(stderr, "%s: [%d] waiting semaphore\n", __func__, i); pr_debug("%s: [%d] waiting semaphore\n", __func__, i);
sem_wait(sem); sem_wait(sem);
r = (rand() % DELAY_US_MAX) + 1; r = (rand() % DELAY_US_MAX) + 1;
fprintf(stderr, "%s: [%d] waiting %dus\n", __func__, i, r); pr_debug("%s: [%d] waiting %dus\n", __func__, i, r);
usleep(r); usleep(r);
r = waitpid(pid, &s, WNOHANG); r = waitpid(pid, &s, WNOHANG);
TEST_ASSERT(r != pid, TEST_ASSERT(r != pid,
"%s: [%d] child exited unexpectedly status: [%d]", "%s: [%d] child exited unexpectedly status: [%d]",
__func__, i, s); __func__, i, s);
fprintf(stderr, "%s: [%d] killing child\n", __func__, i); pr_debug("%s: [%d] killing child\n", __func__, i);
kill(pid, SIGKILL); kill(pid, SIGKILL);
} }
......
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