I have a program that, under certain circumstances, will crash out with the "Serious Error" popup. In order to better probe the crash with an automated test harness, I'd like to be able to skip that popup and just have the process terminate. Is there a way to do that? Tell Wine "hey, if this program segfaults, just close it without asking me"? Hoping this is something really easy, but I couldn't find anything on 'man wine' or similar. ChrisA
This kind of a "popup" issue, sounds like what windows does when any program hits the abort() function. Can you make a screenshot of that window? Maybe wine tries to exacly emulate what windows does, in that case I think you can attach a debugger to the process? Am 07.02.2015 um 11:15 schrieb Chris Angelico:> I have a program that, under certain circumstances, will crash out > with the "Serious Error" popup. In order to better probe the crash > with an automated test harness, I'd like to be able to skip that popup > and just have the process terminate. Is there a way to do that? Tell > Wine "hey, if this program segfaults, just close it without asking > me"? > > Hoping this is something really easy, but I couldn't find anything on > 'man wine' or similar. > > ChrisA >-- Georg Bege Mail: georg at bege.email XMPP: therion at ninth-art.de IRC: megaTherion @ Freenode -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: <http://www.winehq.org/pipermail/wine-users/attachments/20150207/ecac93e6/attachment.sig>
On Sat, Feb 7, 2015 at 8:15 AM, Chris Angelico <rosuav at gmail.com> wrote:> I have a program that, under certain circumstances, will crash out > with the "Serious Error" popup. In order to better probe the crash > with an automated test harness, I'd like to be able to skip that popup > and just have the process terminate. Is there a way to do that? Tell > Wine "hey, if this program segfaults, just close it without asking > me"? > > Hoping this is something really easy, but I couldn't find anything on > 'man wine' or similar.Probably this is what you are looking for: http://wiki.winehq.org/FAQ#head-c857c433cf9fc1dcd90b8369ef75c325483c91d6> ChrisABest regards, Bruno
On Sun, Feb 8, 2015 at 1:06 PM, Bruno Jesus <00cpxxx at gmail.com> wrote:> Probably this is what you are looking for: > http://wiki.winehq.org/FAQ#head-c857c433cf9fc1dcd90b8369ef75c325483c91d6Yep, that looks like it, thanks! It's unfortunately hard to search for something like this - any search involving "wine crash" will be talking about specific programs that crash and how to deal with it (to stop them from crashing), not about the crash dialog itself. But thanks, that's what I needed! ChrisA