summaryrefslogtreecommitdiff
path: root/tools/testing/vsock
diff options
context:
space:
mode:
authorStefano Garzarella <sgarzare@redhat.com>2026-01-08 12:44:19 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2026-01-23 11:21:16 +0100
commitf39ab11f118b2d22db5a1313260e3977bff02b27 (patch)
tree2243dfb21cc5fd536ec76f4ff693ce6824f7f0dc /tools/testing/vsock
parent554201ed0a8f4d32e719f42caeaeb2735a9ed6ca (diff)
downloadlinux-f39ab11f118b2d22db5a1313260e3977bff02b27.tar.gz
linux-f39ab11f118b2d22db5a1313260e3977bff02b27.tar.bz2
linux-f39ab11f118b2d22db5a1313260e3977bff02b27.zip
vsock/test: add a final full barrier after run all tests
[ Upstream commit c39a6a277e0e67ffff6a8efcbbf7e7e23ce9e38c ] If the last test fails, the other side still completes correctly, which could lead to false positives. Let's add a final barrier that ensures that the last test has finished correctly on both sides, but also that the two sides agree on the number of tests to be performed. Fixes: 2f65b44e199c ("VSOCK: add full barrier between test cases") Reviewed-by: Luigi Leonardi <leonardi@redhat.com> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com> Link: https://patch.msgid.link/20260108114419.52747-1-sgarzare@redhat.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'tools/testing/vsock')
-rw-r--r--tools/testing/vsock/util.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/testing/vsock/util.c b/tools/testing/vsock/util.c
index d843643ced6b..9430ef5b8bc3 100644
--- a/tools/testing/vsock/util.c
+++ b/tools/testing/vsock/util.c
@@ -511,6 +511,18 @@ void run_tests(const struct test_case *test_cases,
printf("ok\n");
}
+
+ printf("All tests have been executed. Waiting other peer...");
+ fflush(stdout);
+
+ /*
+ * Final full barrier, to ensure that all tests have been run and
+ * that even the last one has been successful on both sides.
+ */
+ control_writeln("COMPLETED");
+ control_expectln("COMPLETED");
+
+ printf("ok\n");
}
void list_tests(const struct test_case *test_cases)