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 2026-03-14 22:22:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/os-autoinst (Old) and /work/SRC/openSUSE:Factory/.os-autoinst.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "os-autoinst" Sat Mar 14 22:22:36 2026 rev:575 rq:1338822 version:5.1773429030.ba0de6e Changes: -------- --- /work/SRC/openSUSE:Factory/os-autoinst/os-autoinst.changes 2026-03-13 21:17:45.323664946 +0100 +++ /work/SRC/openSUSE:Factory/.os-autoinst.new.8177/os-autoinst.changes 2026-03-14 22:24:03.577267545 +0100 @@ -1,0 +2,14 @@ +Fri Mar 13 22:24:45 UTC 2026 - [email protected] + +- Update to version 5.1773429030.ba0de6e: + * fix: Correct number of internal test_count + * chore(AGENTS.md): add customized file + * chore(deps): add perl-Test-Perl-Critic dependency for parallel execution + * fix: Remove logger message from else condition + * style: Use single quotes for strings without interpolation + * docs: convert doc/backend_vars.asciidoc to Markdown + * docs: convert README.asciidoc to Markdown + * docs: convert doc/memorydumps.asciidoc to Markdown + * feat: add gitlint pre-commit setup + +------------------------------------------------------------------- Old: ---- os-autoinst-5.1773327169.ae7c574.obscpio New: ---- os-autoinst-5.1773429030.ba0de6e.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ os-autoinst-devel-test.spec ++++++ --- /var/tmp/diff_new_pack.VwvM1n/_old 2026-03-14 22:24:04.609310298 +0100 +++ /var/tmp/diff_new_pack.VwvM1n/_new 2026-03-14 22:24:04.613310464 +0100 @@ -18,7 +18,7 @@ %define short_name os-autoinst-devel Name: %{short_name}-test -Version: 5.1773327169.ae7c574 +Version: 5.1773429030.ba0de6e Release: 0 Summary: Test package for %{short_name} License: GPL-2.0-or-later ++++++ os-autoinst-openvswitch-test.spec ++++++ --- /var/tmp/diff_new_pack.VwvM1n/_old 2026-03-14 22:24:04.661312452 +0100 +++ /var/tmp/diff_new_pack.VwvM1n/_new 2026-03-14 22:24:04.665312618 +0100 @@ -19,7 +19,7 @@ %define name_ext -test %define short_name os-autoinst-openvswitch Name: %{short_name}%{?name_ext} -Version: 5.1773327169.ae7c574 +Version: 5.1773429030.ba0de6e Release: 0 Summary: test package for %{short_name} License: GPL-2.0-or-later ++++++ os-autoinst-test.spec ++++++ --- /var/tmp/diff_new_pack.VwvM1n/_old 2026-03-14 22:24:04.709314441 +0100 +++ /var/tmp/diff_new_pack.VwvM1n/_new 2026-03-14 22:24:04.713314606 +0100 @@ -19,7 +19,7 @@ %define name_ext -test %define short_name os-autoinst Name: %{short_name}%{?name_ext} -Version: 5.1773327169.ae7c574 +Version: 5.1773429030.ba0de6e Release: 0 Summary: test package for os-autoinst License: GPL-2.0-or-later ++++++ os-autoinst.spec ++++++ --- /var/tmp/diff_new_pack.VwvM1n/_old 2026-03-14 22:24:04.741315767 +0100 +++ /var/tmp/diff_new_pack.VwvM1n/_new 2026-03-14 22:24:04.741315767 +0100 @@ -17,7 +17,7 @@ Name: os-autoinst -Version: 5.1773327169.ae7c574 +Version: 5.1773429030.ba0de6e Release: 0 Summary: OS-level test automation License: GPL-2.0-or-later ++++++ os-autoinst-5.1773327169.ae7c574.obscpio -> os-autoinst-5.1773429030.ba0de6e.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/os-autoinst-5.1773327169.ae7c574/basetest.pm new/os-autoinst-5.1773429030.ba0de6e/basetest.pm --- old/os-autoinst-5.1773327169.ae7c574/basetest.pm 2026-03-12 15:52:49.000000000 +0100 +++ new/os-autoinst-5.1773429030.ba0de6e/basetest.pm 2026-03-13 20:10:30.000000000 +0100 @@ -399,9 +399,9 @@ ++$self->{test_count}; } -sub next_resultname ($self, $type, $name = undef) { +sub next_resultname ($self, $type, $name = undef, $inc = 1) { my $testname = $self->{name}; - my $count = $self->_increment_test_count; + my $count = $inc ? $self->_increment_test_count : $self->{test_count}; return $name ? "$testname-$count.$name.$type" : "$testname-$count.$type"; } @@ -509,7 +509,7 @@ $img = tinycv::from_ppm(decode_base64($img)); return $result unless $img; - my $file_name = $self->next_resultname('png'); + my $file_name = $self->next_resultname('png', undef, 0); $img->write_with_thumbnail(join('/', bmwqemu::result_dir(), $file_name)); $result->{screenshot} = $file_name; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/os-autoinst-5.1773327169.ae7c574/t/17-basetest.t new/os-autoinst-5.1773429030.ba0de6e/t/17-basetest.t --- old/os-autoinst-5.1773327169.ae7c574/t/17-basetest.t 2026-03-12 15:52:49.000000000 +0100 +++ new/os-autoinst-5.1773429030.ba0de6e/t/17-basetest.t 2026-03-13 20:10:30.000000000 +0100 @@ -261,10 +261,10 @@ my $res = $basetest->take_screenshot(); is(ref delete $res->{frametime}, 'ARRAY', 'frametime returned'); - is_deeply($res, {result => 'unk', screenshot => 'test-11.png'}, + is_deeply($res, {result => 'unk', screenshot => 'test-10.png'}, 'mock image added to details'); - is($basetest->{test_count}, 11, 'test_count accumulated'); + is($basetest->{test_count}, 10, 'test_count accumulated'); is(scalar @{$basetest->{details}}, 10, 'all details added'); }; ++++++ os-autoinst.obsinfo ++++++ --- /var/tmp/diff_new_pack.VwvM1n/_old 2026-03-14 22:24:09.189500037 +0100 +++ /var/tmp/diff_new_pack.VwvM1n/_new 2026-03-14 22:24:09.225501527 +0100 @@ -1,5 +1,5 @@ name: os-autoinst -version: 5.1773327169.ae7c574 -mtime: 1773327169 -commit: ae7c574ea49847b179df30e78661517bf333d9e9 +version: 5.1773429030.ba0de6e +mtime: 1773429030 +commit: ba0de6e4da8fdf07f8c95446e117c1dab2e25eb1
