[PULL 05/29] iotests: print reason when I/O test is skipped in TAP mode

2026-05-21 Thread Daniel P . Berrangé
The TAP output on a skipped test:

  ok raw 181 # SKIP

is not informative.

The test program included a reason, and that should be displayed
in TAP mode (it is already shown in non-TAP mode):

  ok raw 181 # SKIP Postcopy is not supported

Reviewed-by: Kevin Wolf 
Reviewed-by: Thomas Huth 
Reviewed-by: Pierrick Bouvier 
Signed-off-by: Daniel P. Berrangé 
---
 tests/qemu-iotests/testrunner.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/qemu-iotests/testrunner.py b/tests/qemu-iotests/testrunner.py
index e2a3658994..dbe2dddc32 100644
--- a/tests/qemu-iotests/testrunner.py
+++ b/tests/qemu-iotests/testrunner.py
@@ -174,7 +174,7 @@ def test_print_one_line(self, test: str,
 elif status == 'fail':
 print(f'not ok {self.env.imgfmt} {test}')
 elif status == 'not run':
-print(f'ok {self.env.imgfmt} {test} # SKIP')
+print(f'ok {self.env.imgfmt} {test} # SKIP {description}')
 return
 
 if lasttime:
-- 
2.54.0




[PULL 05/29] iotests: print reason when I/O test is skipped in TAP mode

2026-05-20 Thread Daniel P . Berrangé
The TAP output on a skipped test:

  ok raw 181 # SKIP

is not informative.

The test program included a reason, and that should be displayed
in TAP mode (it is already shown in non-TAP mode):

  ok raw 181 # SKIP Postcopy is not supported

Reviewed-by: Kevin Wolf 
Reviewed-by: Thomas Huth 
Reviewed-by: Pierrick Bouvier 
Signed-off-by: Daniel P. Berrangé 
---
 tests/qemu-iotests/testrunner.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/qemu-iotests/testrunner.py b/tests/qemu-iotests/testrunner.py
index e2a3658994..dbe2dddc32 100644
--- a/tests/qemu-iotests/testrunner.py
+++ b/tests/qemu-iotests/testrunner.py
@@ -174,7 +174,7 @@ def test_print_one_line(self, test: str,
 elif status == 'fail':
 print(f'not ok {self.env.imgfmt} {test}')
 elif status == 'not run':
-print(f'ok {self.env.imgfmt} {test} # SKIP')
+print(f'ok {self.env.imgfmt} {test} # SKIP {description}')
 return
 
 if lasttime:
-- 
2.54.0