Hello community,

here is the log from the commit of package fwts for openSUSE:Factory checked in 
at 2020-06-12 21:37:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fwts (Old)
 and      /work/SRC/openSUSE:Factory/.fwts.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fwts"

Fri Jun 12 21:37:13 2020 rev:48 rq:809010 version:20.05.00

Changes:
--------
--- /work/SRC/openSUSE:Factory/fwts/fwts.changes        2020-05-13 
22:56:12.507023776 +0200
+++ /work/SRC/openSUSE:Factory/.fwts.new.3606/fwts.changes      2020-06-12 
21:39:13.299924893 +0200
@@ -1,0 +2,6 @@
+Tue May 26 11:54:05 UTC 2020 - Martin Pluskal <mplus...@suse.com>
+
+- Update to version 20.05.00:
+  * See provided changelog for detailed list of changes  
+
+-------------------------------------------------------------------

Old:
----
  fwts-V20.03.01.tar.gz

New:
----
  fwts-V20.05.00.tar.gz

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

Other differences:
------------------
++++++ fwts.spec ++++++
--- /var/tmp/diff_new_pack.NghH88/_old  2020-06-12 21:39:15.615926523 +0200
+++ /var/tmp/diff_new_pack.NghH88/_new  2020-06-12 21:39:15.615926523 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           fwts
-Version:        20.03.01
+Version:        20.05.00
 Release:        0
 Summary:        Firmware Test Suite
 License:        GPL-2.0-or-later
@@ -73,6 +73,7 @@
 
 %files
 %doc README README_ACPICA.txt README_SOURCE.txt ./data/README_JSON.txt
+%doc debian/changelog
 %{_bindir}/fwts
 %{_bindir}/kernelscan
 %{_libdir}/fwts

++++++ fwts-V20.03.01.tar.gz -> fwts-V20.05.00.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/debian/changelog new/debian/changelog
--- old/debian/changelog        2020-05-13 02:54:31.000000000 +0200
+++ new/debian/changelog        2020-05-14 20:09:03.000000000 +0200
@@ -1,4 +1,4 @@
-fwts (20.03.01-0ubuntu1) groovy; urgency=medium
+fwts (20.05.00-0ubuntu1) groovy; urgency=medium
 
   [Alex Hung]
   * dmicheck: update system slot type (type 9)
@@ -22,6 +22,8 @@
   * lib: fwts_acpi_object_eval: add a function to check max returned integers
   * acpi/method: check _PSC, _SxD and _SxW for max returned integers
   * auto-packager:mkpackage.sh: add groovy
+  * acpi/method: revise _CPC's error messages
+  * acpi/time: fix passing method name instead of NULL
 
   [Colin Ian King]
   * ACPICA: Update to version 20200326
@@ -37,6 +39,7 @@
   * Manual: update names of contributors
   * fwts_framework: ensure the string returned from fwts_arch_names is free'd
   * ACPICA: Update to version 20200430
+  * acpi: crsdump: fix portability warning from cppcheck
 
   [Ivan Hu]
   * uefi: add helper function for efi test module init
@@ -44,7 +47,7 @@
   [Paul Menzel]
   * README: Use HTTPS URL https://kernel.ubuntu.org
 
- -- Alex Hung <alex.h...@ubuntu.com>  Tue, 12 May 2020 18:53:53 -0600
+ -- Alex Hung <alex.h...@ubuntu.com>  Thu, 14 May 2020 12:08:10 -0600
 
 fwts (20.03.00-0ubuntu1) focal; urgency=medium
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapcraft.yaml new/snapcraft.yaml
--- old/snapcraft.yaml  2020-05-13 02:54:31.000000000 +0200
+++ new/snapcraft.yaml  2020-05-14 20:09:03.000000000 +0200
@@ -1,5 +1,5 @@
 name: fwts
-version: V20.03.01
+version: V20.05.00
 summary: The Firmware Test Suite (FWTS)
 description: This is a firmware test suite that performs sanity checks on 
system firmware. It is intended to identify BIOS and ACPI errors and if 
appropriate it will try to explain the errors and give advice to help 
workaround or fix firmware bugs.  It is primarily intended to be a 
Linux-centric firmware troubleshooting tool.
 confinement: strict
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/src/acpi/crsdump/crsdump.c 
new/src/acpi/crsdump/crsdump.c
--- old/src/acpi/crsdump/crsdump.c      2020-05-13 02:54:31.000000000 +0200
+++ new/src/acpi/crsdump/crsdump.c      2020-05-14 20:09:03.000000000 +0200
@@ -318,7 +318,7 @@
                unsigned int i;
 
                for (i = 0; i < 32; i++) {
-                       if (val & (1 << i)) {
+                       if (val & (1UL << i)) {
                                char tmp[5];
 
                                snprintf(tmp, sizeof(tmp), " %u", i);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/src/acpi/devices/time/time.c 
new/src/acpi/devices/time/time.c
--- old/src/acpi/devices/time/time.c    2020-05-13 02:54:31.000000000 +0200
+++ new/src/acpi/devices/time/time.c    2020-05-14 20:09:03.000000000 +0200
@@ -270,7 +270,7 @@
        arg[1].Integer.Value = 0;       /* wake up instantly */
 
        return fwts_evaluate_method(fw, METHOD_OPTIONAL, &device,
-               "_STP", arg, 2, fwts_method_test_passed_failed_return, NULL);
+               "_STP", arg, 2, fwts_method_test_passed_failed_return, "_STP");
 }
 
 static int method_test_STV(fwts_framework *fw)
@@ -283,7 +283,7 @@
        arg[1].Integer.Value = 100;     /* timer value */
 
        return fwts_evaluate_method(fw, METHOD_MANDATORY, &device,
-               "_STV", arg, 2, fwts_method_test_passed_failed_return, NULL);
+               "_STV", arg, 2, fwts_method_test_passed_failed_return, "_STV");
 }
 
 static int method_test_TIP(fwts_framework *fw)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/src/acpi/method/method.c new/src/acpi/method/method.c
--- old/src/acpi/method/method.c        2020-05-13 02:54:31.000000000 +0200
+++ new/src/acpi/method/method.c        2020-05-14 20:09:03.000000000 +0200
@@ -1893,7 +1893,7 @@
        } else {
                fwts_failed(fw, LOG_LEVEL_HIGH,
                        "Method_CPCBadRevision",
-                       "_CPC's _REV is incorrect, "
+                       "_CPC's revision is incorrect, "
                        "expecting 1 ,2 or 3, got 0x%" PRIx8 , revision);
 
                return;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/src/lib/include/fwts_version.h 
new/src/lib/include/fwts_version.h
--- old/src/lib/include/fwts_version.h  2020-05-13 02:54:31.000000000 +0200
+++ new/src/lib/include/fwts_version.h  2020-05-14 20:09:03.000000000 +0200
@@ -16,5 +16,5 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
  *
  */
-#define FWTS_VERSION "V20.03.01"
-#define FWTS_DATE    "2020-05-13 00:54:31"
+#define FWTS_VERSION "V20.05.00"
+#define FWTS_DATE    "2020-05-14 18:09:03"


Reply via email to