[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 6/6] qtest: ensure netdev-socket tests have non-overlapping names
|
From: |
Daniel P . Berrangé |
|
Subject: |
[PATCH 6/6] qtest: ensure netdev-socket tests have non-overlapping names |
|
Date: |
Thu, 4 Jan 2024 16:29:42 +0000 |
When naming glib tests if the name of one test is a substring of the
name of another test, it is not possible to use the '-p /the/name'
option to run a single test.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
tests/qtest/netdev-socket.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qtest/netdev-socket.c b/tests/qtest/netdev-socket.c
index 91441f7922..fc7d11961e 100644
--- a/tests/qtest/netdev-socket.c
+++ b/tests/qtest/netdev-socket.c
@@ -526,7 +526,7 @@ int main(int argc, char **argv)
#ifndef _WIN32
qtest_add_func("/netdev/dgram/unix", test_dgram_unix);
#endif
- qtest_add_func("/netdev/stream/unix", test_stream_unix);
+ qtest_add_func("/netdev/stream/unix/oneshot", test_stream_unix);
qtest_add_func("/netdev/stream/unix/reconnect",
test_stream_unix_reconnect);
#ifdef CONFIG_LINUX
--
2.43.0
- [PATCH 0/6] net: fix non-deterministic failures of the 'netdev-socket' qtest, Daniel P . Berrangé, 2024/01/04
- [PATCH 1/6] Revert "netdev: set timeout depending on loadavg", Daniel P . Berrangé, 2024/01/04
- [PATCH 2/6] Revert "osdep: add getloadavg", Daniel P . Berrangé, 2024/01/04
- [PATCH 3/6] Revert "tests/qtest/netdev-socket: Raise connection timeout to 120 seconds", Daniel P . Berrangé, 2024/01/04
- [PATCH 4/6] net: add explicit info about connecting/listening state, Daniel P . Berrangé, 2024/01/04
- [PATCH 6/6] qtest: ensure netdev-socket tests have non-overlapping names,
Daniel P . Berrangé <=
- [PATCH 5/6] net: handle QIOTask completion to report useful error message, Daniel P . Berrangé, 2024/01/04
- Re: [PATCH 0/6] net: fix non-deterministic failures of the 'netdev-socket' qtest, Stefan Hajnoczi, 2024/01/04
- Re: [PATCH 0/6] net: fix non-deterministic failures of the 'netdev-socket' qtest, Daniel P . Berrangé, 2024/01/09