diff options
author | Thomas Huth <thuth@redhat.com> | 2022-02-23 10:58:16 +0100 |
---|---|---|
committer | Hanna Reitz <hreitz@redhat.com> | 2022-03-22 09:40:54 +0100 |
commit | e48093a6c09e429f2bbe69c1e88b5b78f8b531f5 (patch) | |
tree | ff0d1553fd572baabf66c0e0aee510b9332ff676 /tests | |
parent | e287072b40c8928ed54c275f1e548a9009394ecf (diff) |
tests/qemu-iotests/testrunner: Supply a test plan in TAP mode
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 <thuth@redhat.com>
Message-Id: <20220223095816.2663005-1-thuth@redhat.com>
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qemu-iotests/testrunner.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ class TestRunner(ContextManager['TestRunner']): if self.tap: self.env.print_env('# ') + print('1..%d' % len(tests)) else: self.env.print_env() |