[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH for-9.0 v2 7/7] qtest/virtio-9p-test.c: remove g_test_slow() gate
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH for-9.0 v2 7/7] qtest/virtio-9p-test.c: remove g_test_slow() gate |
Date: |
Wed, 27 Mar 2024 06:31:44 -0300 |
Commit 558f5c42ef gated the local tests with g_test_slow() to skip them
in 'make check'. The reported issue back then was this following CI
problem:
https://lists.nongnu.org/archive/html/qemu-devel/2020-11/msg05510.html
This problem ended up being fixed when the recently added risc-v machine
nodes faced the same issue [1]. We're now able to run these tests with
'make check' in the CI.
This reverts commit 558f5c42efded3e0d0b20a90bce2a9a14580d824.
[1] https://mail.gnu.org/archive/html/qemu-devel/2024-03/msg05807.html
Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
---
tests/qtest/virtio-9p-test.c | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/tests/qtest/virtio-9p-test.c b/tests/qtest/virtio-9p-test.c
index f85f4ef407..8d8a7578b7 100644
--- a/tests/qtest/virtio-9p-test.c
+++ b/tests/qtest/virtio-9p-test.c
@@ -710,15 +710,6 @@ static void register_virtio_9p_test(void)
/* 9pfs test cases using the 'local' filesystem driver */
-
- /*
- * XXX: Until we are sure that these tests can run everywhere,
- * keep them as "slow" so that they aren't run with "make check".
- */
- if (!g_test_slow()) {
- return;
- }
-
opts.before = assign_9p_local_driver;
qos_add_test("local/config", "virtio-9p", pci_config, &opts);
qos_add_test("local/create_unlinkat_dir", "virtio-9p",
--
2.44.0
- [PATCH for-9.0 v2 0/7] qtest/virtio-9p-test.c: fix slow tests, Daniel Henrique Barboza, 2024/03/27
- [PATCH for-9.0 v2 2/7] qtest/virtio-9p-test.c: parametrize 'dir' name in local tests, Daniel Henrique Barboza, 2024/03/27
- [PATCH for-9.0 v2 5/7] qtest/virtio-9p-test.c: consolidate create symlink tests, Daniel Henrique Barboza, 2024/03/27
- [PATCH for-9.0 v2 1/7] qtest/virtio-9p-test.c: add '_path' in path vars, Daniel Henrique Barboza, 2024/03/27
- [PATCH for-9.0 v2 3/7] qtest/virtio-9p-test.c: consolidate create dir tests, Daniel Henrique Barboza, 2024/03/27
- [PATCH for-9.0 v2 4/7] qtest/virtio-9p-test.c: consolidate create file tests, Daniel Henrique Barboza, 2024/03/27
- [PATCH for-9.0 v2 6/7] qtest/virtio-9p-test.c: consolidate hardlink tests, Daniel Henrique Barboza, 2024/03/27
- [PATCH for-9.0 v2 7/7] qtest/virtio-9p-test.c: remove g_test_slow() gate,
Daniel Henrique Barboza <=