qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] tests: Ensure TAP version is printed before other messages


From: Thomas Huth
Subject: Re: [PATCH] tests: Ensure TAP version is printed before other messages
Date: Tue, 28 Feb 2023 21:30:56 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.13.0

On 27/02/2023 18.40, Richard W.M. Jones wrote:
These two tests were failing with this error:

   stderr:
   TAP parsing error: version number must be on the first line
   [...]
   Unknown TAP version. The first line MUST be `TAP version <int>`. Assuming 
version 12.

This can be fixed by ensuring we always call g_test_init first in the
body of main.

Thanks: Daniel Berrange, for diagnosing the problem
Signed-off-by: Richard W.M. Jones <rjones@redhat.com>
---
  tests/qtest/fuzz-lsi53c895a-test.c | 4 ++--
  tests/qtest/rtl8139-test.c         | 5 +++--
  2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/tests/qtest/fuzz-lsi53c895a-test.c 
b/tests/qtest/fuzz-lsi53c895a-test.c
index a9254b455d..2012bd54b7 100644
--- a/tests/qtest/fuzz-lsi53c895a-test.c
+++ b/tests/qtest/fuzz-lsi53c895a-test.c
@@ -112,12 +112,12 @@ static void test_lsi_do_dma_empty_queue(void)
int main(int argc, char **argv)
  {
+    g_test_init(&argc, &argv, NULL);
+
      if (!qtest_has_device("lsi53c895a")) {
          return 0;

Could you please double-check that the !lsi53c895a case works fine, too? (just temporarily change it into a "if (1) { ..." statement) ... I'm a little bit afraid that the TAP protocol might be incomplete without the g_test_run() at the end otherwise. If so, you might now need a "goto out" instead of the "return 0" here...

 Thomas


      }
- g_test_init(&argc, &argv, NULL);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]