https://bugs.winehq.org/show_bug.cgi?id=47802
Bug ID: 47802
Summary: Monitor the VMs disk usage
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
We have a Munin plugin that monitors various TestBot metrics like the VM revert
times. This can be pretty useful to diagnose issues.
However this does not monitor the VM's disk usage, i.e. the size of their qcow2
files. Yet for some VMs the disk usage can increase quite a bit with time.
Tests could also fill a VM's disk (accidentally or not), causing an increase in
the qcow2's file size.
Libvirt provides a way to query a VM's disk usage remotely. However I expect
this to not be super fast so I don't think this should be done directly in the
Munin.pl script. Also these typically do not change all that often so querying
them every 5 minutes may be overkill. So the way to go would probably be to run
a script from cron to update a TestBot table with that data (likely the Records
table), and then have Munin.pl return the latest data from that table.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43880
Bug ID: 43880
Summary: Testbot will not submit results (too many errors)
Product: Wine-Testbot
Version: unspecified
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: parkerjbarker(a)yahoo.com
"59 tests failed, there's probably something broken with your setup.
You need to address this before submitting results."
52 errors for the 64 bit test, and 59 errors for the 32 bit test.
I'm running this on real hardware, Vista, as administrator. Please update the
testing software so that I can submit the results, even with a high number of
errors.
And while you're at it, I would change the comma after "failed" to a colon.
I looked for similar bug reports but found nothing expressly dealing with this.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47796
Bug ID: 47796
Summary: mysql-workbench: Error para iniciar la aplicación
Product: Wine
Version: 4.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fitopy(a)gmail.com
Distribution: ---
Created attachment 65288
--> https://bugs.winehq.org/attachment.cgi?id=65288
mysql-workbench: Error para iniciar la aplicación
mysql-workbench: Error para iniciar la aplicación, no se puede iniciar, se
instala tranquilamente si tiene toda las dependencias satisfechas pero no
inicia despues de instalar
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44338
Bug ID: 44338
Summary: cmd: Brackets are no deliminiter in the condition part
of the if command.
Product: Wine
Version: 3.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
Created attachment 60213
--> https://bugs.winehq.org/attachment.cgi?id=60213
cmd: Change parsing of the if command to avoid parsing the operators.
Found while trying to look into #44236.
There a batch script is executed that contains lines as this:
---
if (%1)==(p) start /W " " "%SFDIR%WSFplot" wr2300.t35 3
---
This returns an error like this:
---
Syntax error
Can't recognize 'p' as an internal or external command, or batch script.
---
It looks like native does handle the brackets differently when contained
inside the condition part of the if command.
Attached is a patch that tries to skip the parsing in WCMD_ReadAndParseLine
of that part. Therefore it moves most of the content of WCMD_if into a
helper and calls that to estimate how long the condition part is.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47757
--- Comment #1 from Nikolay Sivov <bunglehead(a)gmail.com> ---
I suggest removing this from staging patches.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47793
Bug ID: 47793
Summary: Avast cannot be installed
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: thekingstream(a)gmail.com
Distribution: ---
When trying to install avast the installer stop and a message error is
displayed, the error is:
HTMLayout.dll cannot be loaded to properly start GUI. Therefore process cannot
continue.
I try to copy dll in system, system32 and syswow64 directory of wine but
problem still persist
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47787
Bug ID: 47787
Summary: Path maniplation bug in cpython 3.5/3.6 but not 3.7
Product: Wine
Version: 4.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zzhang(a)codeweavers.com
Distribution: ---
Bug reported by Sebastian M. Ernst on wine-devel mail list.
Found one more odd thing and it might be closely related (if not the
same bug). I tested different versions of CPython for Windows on Wine
4.14 and noticed that pytest (a Python test library) was somehow broken
on CPython 3.5 and 3.6 but not on CPython 3.7. It can also be traced
back to path manipulation:
# CPython 3.5.4
user@comp:/path/to/target> wine python.exe -c "from pathlib import Path;
print(Path('.').resolve())"
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "pathlib.py", line 1109, in resolve
File "pathlib.py", line 186, in resolve
FileNotFoundError: [WinError 2] Datei nicht gefunden: '.'
# CPython 3.6.3
user@comp:/path/to/target> wine python.exe -c "from pathlib import Path;
print(Path('.').resolve())"
.
# CPython 3.7.4
user@comp:/path/to/target> wine python.exe -c "from pathlib import Path;
print(Path('.').resolve())"
Z:\path\to\target
CPython 3.7 is correctly resolving the path '.' while CPython 3.5 and
3.6 fail in different ways. All three examples work correctly on Windows
10. "Datei nicht gefunden" translates to "file not found".
If any one wants to take this bug. Please assign it. Thanks.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46192
Bug ID: 46192
Summary: Beat Hazard 2: Open Mic can't capture desktop audio
Product: Wine
Version: 3.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: devilj(a)outlook.pt
Distribution: ArchLinux
Created attachment 62852
--> https://bugs.winehq.org/attachment.cgi?id=62852
Wine debug output
The game fails to use WASAPI's software loopback mode to capture audio being
played by the computer. It uses a middleware library called basswasapi.dll for
this effect.
This has been reproduced in Wine 3.18 through 3.21, including Staging versions.
Attached log captured with:
+tid,+seh,+mmdevapi,+winmm,+driver,+msacm,+midi,+dsound,+dsound3d,+xaudio2,+xapofx,+dmusic,+mci,+pulse,+oss,+alsa,+coreaudio,+timestamp,+debugstr
Since there's a relatively clean and simple workaround with PulseAudio and
pavucontrol, I'm setting the severity to minor, but this is still functionality
loss.
BASS Audio library: https://www.un4seen.com/bass.html
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47781
Bug ID: 47781
Summary: Occurs after opening vovoid
Product: Wine
Version: 4.0.2
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: emilyschulteslifkin(a)gmail.com
Created attachment 65270
--> https://bugs.winehq.org/attachment.cgi?id=65270
Error message after opening vovoid
Open Vovoid, loads as normal, shows starting screen, then says a serious error
happened it is a 64 application and I have 64 optional downloaded
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40850
Bug ID: 40850
Summary: MS Money 2000: text is cut off when entering an
operation
Product: Wine
Version: 1.8.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrea.vai(a)unipv.it
Distribution: ---
Created attachment 54839
--> https://bugs.winehq.org/attachment.cgi?id=54839
Screenshot of cut off text
While I am entering a transaction, the text that I try to enter is cut off at
the bottom. After the enter is done, the text appears correctly.
In the attached screenshot you can see, from top to bottom:
- the first transaction, previously entered, which shows the text ("Car: Fuel")
correctly;
- a second transaction, during its insertion, showing the same text ("Car" /
"Fuel") cut off
The text cut off is somewhat unreadable, so this bug is quite annoying.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.