From: Thomas Huth <[email protected]> Quoting the TAP specification: "The plan tells how many tests will be run [...]. It’s a check that the test file hasn’t stopped prematurely." That's a good idea of course, so let's support that in the iotest testrunner, too.
Signed-off-by: Thomas Huth <[email protected]> Message-Id: <[email protected]> Signed-off-by: Hanna Reitz <[email protected]> --- tests/qemu-iotests/testrunner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/qemu-iotests/testrunner.py b/tests/qemu-iotests/testrunner.py index 5c207225b1..aae70a8341 100644 --- a/tests/qemu-iotests/testrunner.py +++ b/tests/qemu-iotests/testrunner.py @@ -388,6 +388,7 @@ def run_tests(self, tests: List[str], jobs: int = 1) -> bool: if self.tap: self.env.print_env('# ') + print('1..%d' % len(tests)) else: self.env.print_env() -- 2.35.1
