lmi-commits
[Top][All Lists]
Advanced

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

[lmi-commits] [lmi] master 21479cf9 5/5: Disable a few harmless but anno


From: Vadim Zeitlin
Subject: [lmi-commits] [lmi] master 21479cf9 5/5: Disable a few harmless but annoying Wine "fixme" messages
Date: Sat, 11 Feb 2023 15:04:39 -0500 (EST)

branch: master
commit 21479cf93a25f65d8c880320d770ed6175eb4aab
Author: Vadim Zeitlin <vadim@tt-solutions.com>
Commit: Vadim Zeitlin <vadim@tt-solutions.com>

    Disable a few harmless but annoying Wine "fixme" messages
    
    This avoids messages like the following ones:
    
    0098:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
    0050:fixme:imm:ImeSetActiveContext (0000000000010026, 0): stub
    0050:fixme:imm:ImmReleaseContext (0000000000010020, 0000000000010026):
        stub
    
    that we can't do anything about anyhow.
---
 .github/workflows/ci.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 97630a7e..8db1ff7f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -90,7 +90,10 @@ jobs:
             # run 64-bit programs in this build, so set WINEDEBUG to a
             # value equivalent to its default/unset value but recognized
             # as disabling error output by Debian /usr/bin/wine script.
-            echo 'WINEDEBUG=-all,err+all,fixme+all' >> "$GITHUB_ENV"
+            #
+            # Additionally disable some "fixme" messages that don't seem to be
+            # useful and that we can't do anything about.
+            echo 'WINEDEBUG=-all,err+all,fixme+all,fixme-hid,fixme-imm' >> 
"$GITHUB_ENV"
           else
             packages+=(libgtk-3-dev)
           fi



reply via email to

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