All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] bios-tables-test: more documentation
@ 2020-01-22  8:05 Michael S. Tsirkin
  2020-01-22  8:05 ` [PATCH 1/5] bios-tables-test: tell people how to update Michael S. Tsirkin
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Michael S. Tsirkin @ 2020-01-22  8:05 UTC (permalink / raw)
  To: qemu-devel

Better error messages, documentation tweaks to help
people follow the process for expected file updates.

Michael S. Tsirkin (5):
  bios-tables-test: tell people how to update
  bios-tables-test: fix up DIFF generation
  bios-tables-test: default diff command
  bios-tables-test: fix path to allowed diff
  rebuild-expected-aml.sh: remind about the process

 tests/qtest/bios-tables-test.c          | 32 ++++++++++++-------------
 tests/data/acpi/rebuild-expected-aml.sh |  7 ++++++
 2 files changed, 23 insertions(+), 16 deletions(-)

-- 
MST



^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/5] bios-tables-test: tell people how to update
  2020-01-22  8:05 [PATCH 0/5] bios-tables-test: more documentation Michael S. Tsirkin
@ 2020-01-22  8:05 ` Michael S. Tsirkin
  2020-01-22  8:25   ` Laurent Vivier
  2020-01-22  9:17   ` Thomas Huth
  2020-01-22  8:05 ` [PATCH 2/5] bios-tables-test: fix up DIFF generation Michael S. Tsirkin
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 12+ messages in thread
From: Michael S. Tsirkin @ 2020-01-22  8:05 UTC (permalink / raw)
  To: qemu-devel; +Cc: Laurent Vivier, Igor Mammedov, Thomas Huth, Paolo Bonzini

For now just a pointer to the source file.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 tests/qtest/bios-tables-test.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
index 3ab4872bd7..6b5f24bf62 100644
--- a/tests/qtest/bios-tables-test.c
+++ b/tests/qtest/bios-tables-test.c
@@ -426,7 +426,9 @@ static void test_acpi_asl(test_data *data)
 
         fprintf(stderr,
                 "acpi-test: Warning! %.4s binary file mismatch. "
-                "Actual [aml:%s], Expected [aml:%s].\n",
+                "Actual [aml:%s], Expected [aml:%s].\n"
+                "See source file tests/qtest/bios-tables-test.c "
+                "for instructions on how to update expected files.\n",
                 exp_sdt->aml, sdt->aml_file, exp_sdt->aml_file);
 
         all_tables_match = all_tables_match &&
-- 
MST



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/5] bios-tables-test: fix up DIFF generation
  2020-01-22  8:05 [PATCH 0/5] bios-tables-test: more documentation Michael S. Tsirkin
  2020-01-22  8:05 ` [PATCH 1/5] bios-tables-test: tell people how to update Michael S. Tsirkin
@ 2020-01-22  8:05 ` Michael S. Tsirkin
  2020-01-22  9:00   ` Laurent Vivier
  2020-01-22  8:05 ` [PATCH 3/5] bios-tables-test: default diff command Michael S. Tsirkin
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 12+ messages in thread
From: Michael S. Tsirkin @ 2020-01-22  8:05 UTC (permalink / raw)
  To: qemu-devel; +Cc: Laurent Vivier, Igor Mammedov, Thomas Huth, Paolo Bonzini

Turns out it goes to stdout which is suppressed even with V=1.
Force DIFF output to stderr to make it visible.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 tests/qtest/bios-tables-test.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
index 6b5f24bf62..c8db2839b2 100644
--- a/tests/qtest/bios-tables-test.c
+++ b/tests/qtest/bios-tables-test.c
@@ -463,13 +463,18 @@ static void test_acpi_asl(test_data *data)
                         "Actual [asl:%s, aml:%s], Expected [asl:%s, aml:%s].\n",
                         exp_sdt->aml, sdt->asl_file, sdt->aml_file,
                         exp_sdt->asl_file, exp_sdt->aml_file);
+                fflush(stderr);
                 if (getenv("V")) {
                     const char *diff_cmd = getenv("DIFF");
                     if (diff_cmd) {
-                        int ret G_GNUC_UNUSED;
                         char *diff = g_strdup_printf("%s %s %s", diff_cmd,
                             exp_sdt->asl_file, sdt->asl_file);
+                        int out = dup(STDOUT_FILENO);
+                        int ret G_GNUC_UNUSED;
+
+                        dup2(STDERR_FILENO, STDOUT_FILENO);
                         ret = system(diff) ;
+                        dup2(out, STDOUT_FILENO);
                         g_free(diff);
                     } else {
                         fprintf(stderr, "acpi-test: Warning. not showing "
-- 
MST



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 3/5] bios-tables-test: default diff command
  2020-01-22  8:05 [PATCH 0/5] bios-tables-test: more documentation Michael S. Tsirkin
  2020-01-22  8:05 ` [PATCH 1/5] bios-tables-test: tell people how to update Michael S. Tsirkin
  2020-01-22  8:05 ` [PATCH 2/5] bios-tables-test: fix up DIFF generation Michael S. Tsirkin
@ 2020-01-22  8:05 ` Michael S. Tsirkin
  2020-01-22  8:06 ` [PATCH 4/5] bios-tables-test: fix path to allowed diff Michael S. Tsirkin
  2020-01-22  8:06 ` [PATCH 5/5] rebuild-expected-aml.sh: remind about the process Michael S. Tsirkin
  4 siblings, 0 replies; 12+ messages in thread
From: Michael S. Tsirkin @ 2020-01-22  8:05 UTC (permalink / raw)
  To: qemu-devel; +Cc: Laurent Vivier, Igor Mammedov, Thomas Huth, Paolo Bonzini

Most people probably just want diff -u. So let's use that
as the default.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 tests/qtest/bios-tables-test.c | 27 ++++++++++-----------------
 1 file changed, 10 insertions(+), 17 deletions(-)

diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
index c8db2839b2..6ec1c5be64 100644
--- a/tests/qtest/bios-tables-test.c
+++ b/tests/qtest/bios-tables-test.c
@@ -465,24 +465,17 @@ static void test_acpi_asl(test_data *data)
                         exp_sdt->asl_file, exp_sdt->aml_file);
                 fflush(stderr);
                 if (getenv("V")) {
-                    const char *diff_cmd = getenv("DIFF");
-                    if (diff_cmd) {
-                        char *diff = g_strdup_printf("%s %s %s", diff_cmd,
-                            exp_sdt->asl_file, sdt->asl_file);
-                        int out = dup(STDOUT_FILENO);
-                        int ret G_GNUC_UNUSED;
+                    const char *diff_env = getenv("DIFF");
+                    const char *diff_cmd = diff_env ? diff_env : "diff -u";
+                    char *diff = g_strdup_printf("%s %s %s", diff_cmd,
+                                                 exp_sdt->asl_file, sdt->asl_file);
+                    int out = dup(STDOUT_FILENO);
+                    int ret G_GNUC_UNUSED;
 
-                        dup2(STDERR_FILENO, STDOUT_FILENO);
-                        ret = system(diff) ;
-                        dup2(out, STDOUT_FILENO);
-                        g_free(diff);
-                    } else {
-                        fprintf(stderr, "acpi-test: Warning. not showing "
-                            "difference since no diff utility is specified. "
-                            "Set 'DIFF' environment variable to a preferred "
-                            "diff utility and run 'make V=1 check' again to "
-                            "see ASL difference.");
-                    }
+                    dup2(STDERR_FILENO, STDOUT_FILENO);
+                    ret = system(diff) ;
+                    dup2(out, STDOUT_FILENO);
+                    g_free(diff);
                 }
             }
         }
-- 
MST



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 4/5] bios-tables-test: fix path to allowed diff
  2020-01-22  8:05 [PATCH 0/5] bios-tables-test: more documentation Michael S. Tsirkin
                   ` (2 preceding siblings ...)
  2020-01-22  8:05 ` [PATCH 3/5] bios-tables-test: default diff command Michael S. Tsirkin
@ 2020-01-22  8:06 ` Michael S. Tsirkin
  2020-01-22  8:51   ` Laurent Vivier
  2020-01-22  9:18   ` Thomas Huth
  2020-01-22  8:06 ` [PATCH 5/5] rebuild-expected-aml.sh: remind about the process Michael S. Tsirkin
  4 siblings, 2 replies; 12+ messages in thread
From: Michael S. Tsirkin @ 2020-01-22  8:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: Laurent Vivier, Igor Mammedov, Thomas Huth, Paolo Bonzini

Fixes: 1e8a1fae7464 ("test: Move qtests to a separate directory")
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 tests/qtest/bios-tables-test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
index 6ec1c5be64..6535ab7f04 100644
--- a/tests/qtest/bios-tables-test.c
+++ b/tests/qtest/bios-tables-test.c
@@ -21,7 +21,7 @@
  * in binary commit created in step 6):
  *
  * After 1-3 above tests will pass but ignore differences with the expected files.
- * You will also notice that tests/bios-tables-test-allowed-diff.h lists
+ * You will also notice that tests/qtest/bios-tables-test-allowed-diff.h lists
  * a bunch of files. This is your hint that you need to do the below:
  * 4. Run
  *      make check V=1
-- 
MST



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 5/5] rebuild-expected-aml.sh: remind about the process
  2020-01-22  8:05 [PATCH 0/5] bios-tables-test: more documentation Michael S. Tsirkin
                   ` (3 preceding siblings ...)
  2020-01-22  8:06 ` [PATCH 4/5] bios-tables-test: fix path to allowed diff Michael S. Tsirkin
@ 2020-01-22  8:06 ` Michael S. Tsirkin
  4 siblings, 0 replies; 12+ messages in thread
From: Michael S. Tsirkin @ 2020-01-22  8:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: Igor Mammedov

Remind users of rebuild-expected-aml.sh about the process
to follow. Suppress the warning if allowed file list exists -
that's a big hint user is already aware of the process.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 tests/data/acpi/rebuild-expected-aml.sh | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/tests/data/acpi/rebuild-expected-aml.sh b/tests/data/acpi/rebuild-expected-aml.sh
index d44e511533..9cbaab1a4d 100755
--- a/tests/data/acpi/rebuild-expected-aml.sh
+++ b/tests/data/acpi/rebuild-expected-aml.sh
@@ -31,6 +31,13 @@ done
 
 eval `grep SRC_PATH= config-host.mak`
 
+old_allowed_dif=`grep -v -e 'List of comma-separated changed AML files to ignore' ${SRC_PATH}/tests/qtest/bios-tables-test-allowed-diff.h`
+
 echo '/* List of comma-separated changed AML files to ignore */' > ${SRC_PATH}/tests/qtest/bios-tables-test-allowed-diff.h
 
 echo "The files were rebuilt and can be added to git."
+
+if [ -z "$old_allowed_dif" ]; then
+    echo "Note! Please do not commit expected files with source changes"
+    echo "Note! Please follow the process documented in ${SRC_PATH}/tests/qtest/bios-tables-test.c"
+fi
-- 
MST



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/5] bios-tables-test: tell people how to update
  2020-01-22  8:05 ` [PATCH 1/5] bios-tables-test: tell people how to update Michael S. Tsirkin
@ 2020-01-22  8:25   ` Laurent Vivier
  2020-01-22  9:17   ` Thomas Huth
  1 sibling, 0 replies; 12+ messages in thread
From: Laurent Vivier @ 2020-01-22  8:25 UTC (permalink / raw)
  To: Michael S. Tsirkin, qemu-devel; +Cc: Igor Mammedov, Thomas Huth, Paolo Bonzini

On 22/01/2020 09:05, Michael S. Tsirkin wrote:
> For now just a pointer to the source file.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
>  tests/qtest/bios-tables-test.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
> index 3ab4872bd7..6b5f24bf62 100644
> --- a/tests/qtest/bios-tables-test.c
> +++ b/tests/qtest/bios-tables-test.c
> @@ -426,7 +426,9 @@ static void test_acpi_asl(test_data *data)
>  
>          fprintf(stderr,
>                  "acpi-test: Warning! %.4s binary file mismatch. "
> -                "Actual [aml:%s], Expected [aml:%s].\n",
> +                "Actual [aml:%s], Expected [aml:%s].\n"
> +                "See source file tests/qtest/bios-tables-test.c "
> +                "for instructions on how to update expected files.\n",
>                  exp_sdt->aml, sdt->aml_file, exp_sdt->aml_file);
>  
>          all_tables_match = all_tables_match &&
> 

Reviewed-by: Laurent Vivier <lvivier@redhat.com>



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 4/5] bios-tables-test: fix path to allowed diff
  2020-01-22  8:06 ` [PATCH 4/5] bios-tables-test: fix path to allowed diff Michael S. Tsirkin
@ 2020-01-22  8:51   ` Laurent Vivier
  2020-01-22  9:18   ` Thomas Huth
  1 sibling, 0 replies; 12+ messages in thread
From: Laurent Vivier @ 2020-01-22  8:51 UTC (permalink / raw)
  To: Michael S. Tsirkin, qemu-devel; +Cc: Igor Mammedov, Thomas Huth, Paolo Bonzini

On 22/01/2020 09:06, Michael S. Tsirkin wrote:
> Fixes: 1e8a1fae7464 ("test: Move qtests to a separate directory")
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
>  tests/qtest/bios-tables-test.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
> index 6ec1c5be64..6535ab7f04 100644
> --- a/tests/qtest/bios-tables-test.c
> +++ b/tests/qtest/bios-tables-test.c
> @@ -21,7 +21,7 @@
>   * in binary commit created in step 6):
>   *
>   * After 1-3 above tests will pass but ignore differences with the expected files.
> - * You will also notice that tests/bios-tables-test-allowed-diff.h lists
> + * You will also notice that tests/qtest/bios-tables-test-allowed-diff.h lists
>   * a bunch of files. This is your hint that you need to do the below:
>   * 4. Run
>   *      make check V=1
> 

Reviewed-by: Laurent Vivier <lvivier@redhat.com>



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/5] bios-tables-test: fix up DIFF generation
  2020-01-22  8:05 ` [PATCH 2/5] bios-tables-test: fix up DIFF generation Michael S. Tsirkin
@ 2020-01-22  9:00   ` Laurent Vivier
  2020-01-22  9:13     ` Michael S. Tsirkin
  0 siblings, 1 reply; 12+ messages in thread
From: Laurent Vivier @ 2020-01-22  9:00 UTC (permalink / raw)
  To: Michael S. Tsirkin, qemu-devel; +Cc: Igor Mammedov, Thomas Huth, Paolo Bonzini

On 22/01/2020 09:05, Michael S. Tsirkin wrote:
> Turns out it goes to stdout which is suppressed even with V=1.
> Force DIFF output to stderr to make it visible.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
>  tests/qtest/bios-tables-test.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
> index 6b5f24bf62..c8db2839b2 100644
> --- a/tests/qtest/bios-tables-test.c
> +++ b/tests/qtest/bios-tables-test.c
> @@ -463,13 +463,18 @@ static void test_acpi_asl(test_data *data)
>                          "Actual [asl:%s, aml:%s], Expected [asl:%s, aml:%s].\n",
>                          exp_sdt->aml, sdt->asl_file, sdt->aml_file,
>                          exp_sdt->asl_file, exp_sdt->aml_file);
> +                fflush(stderr);
>                  if (getenv("V")) {
>                      const char *diff_cmd = getenv("DIFF");
>                      if (diff_cmd) {
> -                        int ret G_GNUC_UNUSED;
>                          char *diff = g_strdup_printf("%s %s %s", diff_cmd,
>                              exp_sdt->asl_file, sdt->asl_file);
> +                        int out = dup(STDOUT_FILENO);
> +                        int ret G_GNUC_UNUSED;
> +
> +                        dup2(STDERR_FILENO, STDOUT_FILENO);
>                          ret = system(diff) ;
> +                        dup2(out, STDOUT_FILENO);

I think you need a "close(out)" here.

Thanks,
Laurent





^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/5] bios-tables-test: fix up DIFF generation
  2020-01-22  9:00   ` Laurent Vivier
@ 2020-01-22  9:13     ` Michael S. Tsirkin
  0 siblings, 0 replies; 12+ messages in thread
From: Michael S. Tsirkin @ 2020-01-22  9:13 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: Igor Mammedov, Thomas Huth, qemu-devel, Paolo Bonzini

On Wed, Jan 22, 2020 at 10:00:01AM +0100, Laurent Vivier wrote:
> On 22/01/2020 09:05, Michael S. Tsirkin wrote:
> > Turns out it goes to stdout which is suppressed even with V=1.
> > Force DIFF output to stderr to make it visible.
> > 
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> > ---
> >  tests/qtest/bios-tables-test.c | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
> > 
> > diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
> > index 6b5f24bf62..c8db2839b2 100644
> > --- a/tests/qtest/bios-tables-test.c
> > +++ b/tests/qtest/bios-tables-test.c
> > @@ -463,13 +463,18 @@ static void test_acpi_asl(test_data *data)
> >                          "Actual [asl:%s, aml:%s], Expected [asl:%s, aml:%s].\n",
> >                          exp_sdt->aml, sdt->asl_file, sdt->aml_file,
> >                          exp_sdt->asl_file, exp_sdt->aml_file);
> > +                fflush(stderr);
> >                  if (getenv("V")) {
> >                      const char *diff_cmd = getenv("DIFF");
> >                      if (diff_cmd) {
> > -                        int ret G_GNUC_UNUSED;
> >                          char *diff = g_strdup_printf("%s %s %s", diff_cmd,
> >                              exp_sdt->asl_file, sdt->asl_file);
> > +                        int out = dup(STDOUT_FILENO);
> > +                        int ret G_GNUC_UNUSED;
> > +
> > +                        dup2(STDERR_FILENO, STDOUT_FILENO);
> >                          ret = system(diff) ;
> > +                        dup2(out, STDOUT_FILENO);
> 
> I think you need a "close(out)" here.
> 
> Thanks,
> Laurent

Can't hurt, thanks!



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/5] bios-tables-test: tell people how to update
  2020-01-22  8:05 ` [PATCH 1/5] bios-tables-test: tell people how to update Michael S. Tsirkin
  2020-01-22  8:25   ` Laurent Vivier
@ 2020-01-22  9:17   ` Thomas Huth
  1 sibling, 0 replies; 12+ messages in thread
From: Thomas Huth @ 2020-01-22  9:17 UTC (permalink / raw)
  To: Michael S. Tsirkin, qemu-devel
  Cc: Laurent Vivier, Igor Mammedov, Paolo Bonzini

On 22/01/2020 09.05, Michael S. Tsirkin wrote:
> For now just a pointer to the source file.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
>  tests/qtest/bios-tables-test.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
> index 3ab4872bd7..6b5f24bf62 100644
> --- a/tests/qtest/bios-tables-test.c
> +++ b/tests/qtest/bios-tables-test.c
> @@ -426,7 +426,9 @@ static void test_acpi_asl(test_data *data)
>  
>          fprintf(stderr,
>                  "acpi-test: Warning! %.4s binary file mismatch. "
> -                "Actual [aml:%s], Expected [aml:%s].\n",
> +                "Actual [aml:%s], Expected [aml:%s].\n"
> +                "See source file tests/qtest/bios-tables-test.c "
> +                "for instructions on how to update expected files.\n",
>                  exp_sdt->aml, sdt->aml_file, exp_sdt->aml_file);
>  
>          all_tables_match = all_tables_match &&
> 

Reviewed-by: Thomas Huth <thuth@redhat.com>



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 4/5] bios-tables-test: fix path to allowed diff
  2020-01-22  8:06 ` [PATCH 4/5] bios-tables-test: fix path to allowed diff Michael S. Tsirkin
  2020-01-22  8:51   ` Laurent Vivier
@ 2020-01-22  9:18   ` Thomas Huth
  1 sibling, 0 replies; 12+ messages in thread
From: Thomas Huth @ 2020-01-22  9:18 UTC (permalink / raw)
  To: Michael S. Tsirkin, qemu-devel
  Cc: Laurent Vivier, Igor Mammedov, Paolo Bonzini

On 22/01/2020 09.06, Michael S. Tsirkin wrote:
> Fixes: 1e8a1fae7464 ("test: Move qtests to a separate directory")
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
>  tests/qtest/bios-tables-test.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
> index 6ec1c5be64..6535ab7f04 100644
> --- a/tests/qtest/bios-tables-test.c
> +++ b/tests/qtest/bios-tables-test.c
> @@ -21,7 +21,7 @@
>   * in binary commit created in step 6):
>   *
>   * After 1-3 above tests will pass but ignore differences with the expected files.
> - * You will also notice that tests/bios-tables-test-allowed-diff.h lists
> + * You will also notice that tests/qtest/bios-tables-test-allowed-diff.h lists
>   * a bunch of files. This is your hint that you need to do the below:
>   * 4. Run
>   *      make check V=1
> 

Reviewed-by: Thomas Huth <thuth@redhat.com>



^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-01-22  9:19 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-22  8:05 [PATCH 0/5] bios-tables-test: more documentation Michael S. Tsirkin
2020-01-22  8:05 ` [PATCH 1/5] bios-tables-test: tell people how to update Michael S. Tsirkin
2020-01-22  8:25   ` Laurent Vivier
2020-01-22  9:17   ` Thomas Huth
2020-01-22  8:05 ` [PATCH 2/5] bios-tables-test: fix up DIFF generation Michael S. Tsirkin
2020-01-22  9:00   ` Laurent Vivier
2020-01-22  9:13     ` Michael S. Tsirkin
2020-01-22  8:05 ` [PATCH 3/5] bios-tables-test: default diff command Michael S. Tsirkin
2020-01-22  8:06 ` [PATCH 4/5] bios-tables-test: fix path to allowed diff Michael S. Tsirkin
2020-01-22  8:51   ` Laurent Vivier
2020-01-22  9:18   ` Thomas Huth
2020-01-22  8:06 ` [PATCH 5/5] rebuild-expected-aml.sh: remind about the process Michael S. Tsirkin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.