summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/kvm/lib
diff options
context:
space:
mode:
authorAndrew Jones <ajones@ventanamicro.com>2023-12-06 18:02:45 +0100
committerSean Christopherson <seanjc@google.com>2024-01-29 08:39:16 -0800
commit93e43e50b80b4f342251fb48f8ebced4d3c34983 (patch)
tree960b4bb994afae5683f937cbd7159114ecdabde8 /tools/testing/selftests/kvm/lib
parent95be17e4008b592342ec6cfb9264f4b54c21b790 (diff)
downloadlinux-stable-93e43e50b80b4f342251fb48f8ebced4d3c34983.tar.gz
linux-stable-93e43e50b80b4f342251fb48f8ebced4d3c34983.tar.bz2
linux-stable-93e43e50b80b4f342251fb48f8ebced4d3c34983.zip
KVM: selftests: riscv: Remove redundant newlines
TEST_* functions append their own newline. Remove newlines from TEST_* callsites to avoid extra newlines in output. Signed-off-by: Andrew Jones <ajones@ventanamicro.com> Acked-by: Anup Patel <anup@brainfault.org> Link: https://lore.kernel.org/r/20231206170241.82801-10-ajones@ventanamicro.com Signed-off-by: Sean Christopherson <seanjc@google.com>
Diffstat (limited to 'tools/testing/selftests/kvm/lib')
-rw-r--r--tools/testing/selftests/kvm/lib/riscv/processor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/lib/riscv/processor.c b/tools/testing/selftests/kvm/lib/riscv/processor.c
index 7ca736fb4194..2bb33a8ac03c 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);