On Wed, Dec 6, 2023 at 10:32 PM Andrew Jones <ajones@xxxxxxxxxxxxxxxx> wrote: > > TEST_* functions append their own newline. Remove newlines from > TEST_* callsites to avoid extra newlines in output. > > Signed-off-by: Andrew Jones <ajones@xxxxxxxxxxxxxxxx> For KVM RISC-V: Acked-by: Anup Patel <anup@xxxxxxxxxxxxxx> Regards, Anup > --- > tools/testing/selftests/kvm/lib/riscv/processor.c | 2 +- > tools/testing/selftests/kvm/riscv/get-reg-list.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tools/testing/selftests/kvm/lib/riscv/processor.c b/tools/testing/selftests/kvm/lib/riscv/processor.c > index d146ca71e0c0..b3082da05c76 100644 > --- a/tools/testing/selftests/kvm/lib/riscv/processor.c > +++ b/tools/testing/selftests/kvm/lib/riscv/processor.c > @@ -327,7 +327,7 @@ void vcpu_args_set(struct kvm_vcpu *vcpu, unsigned int num, ...) > int i; > > TEST_ASSERT(num >= 1 && num <= 8, "Unsupported number of args,\n" > - " num: %u\n", num); > + " num: %u", num); > > va_start(ap, num); > > diff --git a/tools/testing/selftests/kvm/riscv/get-reg-list.c b/tools/testing/selftests/kvm/riscv/get-reg-list.c > index 6bedaea95395..4355e33c0cec 100644 > --- a/tools/testing/selftests/kvm/riscv/get-reg-list.c > +++ b/tools/testing/selftests/kvm/riscv/get-reg-list.c > @@ -112,7 +112,7 @@ void finalize_vcpu(struct kvm_vcpu *vcpu, struct vcpu_reg_list *c) > > /* Double check whether the desired extension was enabled */ > __TEST_REQUIRE(vcpu_has_ext(vcpu, s->feature), > - "%s not available, skipping tests\n", s->name); > + "%s not available, skipping tests", s->name); > } > } > > -- > 2.43.0 >