diff options
author | Andrew Jones <ajones@ventanamicro.com> | 2023-12-06 18:02:47 +0100 |
---|---|---|
committer | Sean Christopherson <seanjc@google.com> | 2024-01-30 12:31:56 -0800 |
commit | 65612e993493014cb95be81ca4f98e08732c46d0 (patch) | |
tree | 051c9f91bb171b45a1e3b09eee2c549dbc6f7ec8 /tools/testing/selftests/kvm/x86_64/xss_msr_test.c | |
parent | a38125f188c141cd1297d14af84c28b5276ab287 (diff) |
KVM: selftests: x86_64: 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>
Link: https://lore.kernel.org/r/20231206170241.82801-12-ajones@ventanamicro.com
[sean: keep the newline in the "tsc\n" strncmp()]
Signed-off-by: Sean Christopherson <seanjc@google.com>
Diffstat (limited to 'tools/testing/selftests/kvm/x86_64/xss_msr_test.c')
-rw-r--r-- | tools/testing/selftests/kvm/x86_64/xss_msr_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/x86_64/xss_msr_test.c b/tools/testing/selftests/kvm/x86_64/xss_msr_test.c index e0ddf47362e7..167c97abff1b 100644 --- a/tools/testing/selftests/kvm/x86_64/xss_msr_test.c +++ b/tools/testing/selftests/kvm/x86_64/xss_msr_test.c @@ -29,7 +29,7 @@ int main(int argc, char *argv[]) xss_val = vcpu_get_msr(vcpu, MSR_IA32_XSS); TEST_ASSERT(xss_val == 0, - "MSR_IA32_XSS should be initialized to zero\n"); + "MSR_IA32_XSS should be initialized to zero"); vcpu_set_msr(vcpu, MSR_IA32_XSS, xss_val); |