Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package os-autoinst for openSUSE:Factory 
checked in at 2025-08-15 21:51:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/os-autoinst (Old)
 and      /work/SRC/openSUSE:Factory/.os-autoinst.new.1085 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "os-autoinst"

Fri Aug 15 21:51:30 2025 rev:531 rq:1299300 version:5.1755088400.98b9a6c

Changes:
--------
--- /work/SRC/openSUSE:Factory/os-autoinst/os-autoinst.changes  2025-08-12 
17:06:26.711949203 +0200
+++ /work/SRC/openSUSE:Factory/.os-autoinst.new.1085/os-autoinst.changes        
2025-08-15 21:52:15.020593769 +0200
@@ -1,0 +2,10 @@
+Thu Aug 14 01:32:37 UTC 2025 - ok...@suse.com
+
+- Update to version 5.1755088400.98b9a6c:
+  * VMWare: Use grep -F to handle fixed-strings in variables
+  * VMWare: Use POSIX shell on ESXi host that uses Busybox
+  * Add wrappers for testapi variables
+  * backend: Turn off direct-io for multi-fd migration
+  * backend: Use tpm-tis-device for TPM as default
+
+-------------------------------------------------------------------

Old:
----
  os-autoinst-5.1754924817.84ae0ae.obscpio

New:
----
  os-autoinst-5.1755088400.98b9a6c.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ os-autoinst-devel-test.spec ++++++
--- /var/tmp/diff_new_pack.1mRPND/_old  2025-08-15 21:52:16.000634515 +0200
+++ /var/tmp/diff_new_pack.1mRPND/_new  2025-08-15 21:52:16.000634515 +0200
@@ -18,7 +18,7 @@
 
 %define         short_name os-autoinst-devel
 Name:           %{short_name}-test
-Version:        5.1754924817.84ae0ae
+Version:        5.1755088400.98b9a6c
 Release:        0
 Summary:        Test package for %{short_name}
 License:        GPL-2.0-or-later

++++++ os-autoinst-openvswitch-test.spec ++++++
--- /var/tmp/diff_new_pack.1mRPND/_old  2025-08-15 21:52:16.044636345 +0200
+++ /var/tmp/diff_new_pack.1mRPND/_new  2025-08-15 21:52:16.048636512 +0200
@@ -19,7 +19,7 @@
 %define name_ext -test
 %define         short_name os-autoinst-openvswitch
 Name:           %{short_name}%{?name_ext}
-Version:        5.1754924817.84ae0ae
+Version:        5.1755088400.98b9a6c
 Release:        0
 Summary:        test package for %{short_name}
 License:        GPL-2.0-or-later

++++++ os-autoinst-test.spec ++++++
--- /var/tmp/diff_new_pack.1mRPND/_old  2025-08-15 21:52:16.084638008 +0200
+++ /var/tmp/diff_new_pack.1mRPND/_new  2025-08-15 21:52:16.088638174 +0200
@@ -19,7 +19,7 @@
 %define name_ext -test
 %define         short_name os-autoinst
 Name:           %{short_name}%{?name_ext}
-Version:        5.1754924817.84ae0ae
+Version:        5.1755088400.98b9a6c
 Release:        0
 Summary:        test package for os-autoinst
 License:        GPL-2.0-or-later

++++++ os-autoinst.spec ++++++
--- /var/tmp/diff_new_pack.1mRPND/_old  2025-08-15 21:52:16.136640170 +0200
+++ /var/tmp/diff_new_pack.1mRPND/_new  2025-08-15 21:52:16.140640336 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           os-autoinst
-Version:        5.1754924817.84ae0ae
+Version:        5.1755088400.98b9a6c
 Release:        0
 Summary:        OS-level test automation
 License:        GPL-2.0-or-later

++++++ os-autoinst-5.1754924817.84ae0ae.obscpio -> 
os-autoinst-5.1755088400.98b9a6c.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/os-autoinst-5.1754924817.84ae0ae/backend/qemu.pm 
new/os-autoinst-5.1755088400.98b9a6c/backend/qemu.pm
--- old/os-autoinst-5.1754924817.84ae0ae/backend/qemu.pm        2025-08-11 
17:06:57.000000000 +0200
+++ new/os-autoinst-5.1755088400.98b9a6c/backend/qemu.pm        2025-08-13 
14:33:20.000000000 +0200
@@ -271,7 +271,10 @@
                 execute => 'migrate-set-parameters',
                 arguments => {
                     'multifd-channels' => $multifd_channels + 0,
-                    'direct-io' => Mojo::JSON->true,
+                    # With direct-io, migration on qa-power8-3 achieves 3.6 
MB/s
+                    # and runs into a timeout, but with it turned off it's 
4GB/s
+                    # (not a typo, 1000x faster!)
+                    'direct-io' => Mojo::JSON->false,
                     # Ensure slow dump times are not due to a transfer rate cap
                     'max-bandwidth' => $max_bandwidth + 0,
                 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/os-autoinst-5.1754924817.84ae0ae/t/18-backend-qemu.t 
new/os-autoinst-5.1755088400.98b9a6c/t/18-backend-qemu.t
--- old/os-autoinst-5.1754924817.84ae0ae/t/18-backend-qemu.t    2025-08-11 
17:06:57.000000000 +0200
+++ new/os-autoinst-5.1755088400.98b9a6c/t/18-backend-qemu.t    2025-08-13 
14:33:20.000000000 +0200
@@ -389,7 +389,7 @@
         {execute => 'migrate-set-capabilities', arguments => {capabilities => 
[{capability => 'events', state => Mojo::JSON->true}]}},
         {execute => 'migrate-set-capabilities', arguments => {capabilities => 
[{capability => 'multifd', state => Mojo::JSON->true}]}},
         {execute => 'migrate-set-capabilities', arguments => {capabilities => 
[{capability => 'mapped-ram', state => Mojo::JSON->true}]}},
-        {execute => 'migrate-set-parameters', arguments => {'multifd-channels' 
=> 2, 'direct-io' => Mojo::JSON->true, 'max-bandwidth' => 
'9223372036854775807'}},
+        {execute => 'migrate-set-parameters', arguments => {'multifd-channels' 
=> 2, 'direct-io' => Mojo::JSON->false, 'max-bandwidth' => 
'9223372036854775807'}},
         {execute => 'getfd', arguments => {fdname => 'dumpfd'}},
         {execute => 'stop'},
         {execute => 'migrate', arguments => {uri => 'file:dumpfd'}}
@@ -486,7 +486,7 @@
         },
         {
             execute => 'migrate-set-parameters',
-            arguments => {'multifd-channels' => 2, 'direct-io' => 
Mojo::JSON->true, 'max-bandwidth' => '9223372036854775807'},
+            arguments => {'multifd-channels' => 2, 'direct-io' => 
Mojo::JSON->false, 'max-bandwidth' => '9223372036854775807'},
         },
         {execute => 'getfd', arguments => {fdname => 'dumpfd'}},
         {execute => 'stop'},

++++++ os-autoinst.obsinfo ++++++
--- /var/tmp/diff_new_pack.1mRPND/_old  2025-08-15 21:52:18.932756422 +0200
+++ /var/tmp/diff_new_pack.1mRPND/_new  2025-08-15 21:52:18.936756588 +0200
@@ -1,5 +1,5 @@
 name: os-autoinst
-version: 5.1754924817.84ae0ae
-mtime: 1754924817
-commit: 84ae0aed00cf6432fcff4545237e7ffabce7c477
+version: 5.1755088400.98b9a6c
+mtime: 1755088400
+commit: 98b9a6cecf819cdac53b9f783ccae6ed672cba1e
 

Reply via email to