-
Notifications
You must be signed in to change notification settings - Fork 681
Disable the debug popup on win32/msvc. #4475
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable the debug popup on win32/msvc. #4475
Conversation
0bf32d5
to
0491a46
Compare
For not popup dialog when crash happend on MSVC/win32 related issue: jerryscript-project#4463 JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo [email protected]
0491a46
to
14722df
Compare
I'm not completely sure that console apps should be tweaked just because Windows doesn't let them crash without displaying graphical UI elements. Isn't it easier to simply disable that service on Windows? https://docs.microsoft.com/en-us/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=win10-ps |
I'd second @akosthekiss's suggestion and I can agree that it must not be implemented in the console app. |
Is it possible to disable these popup by runner script somehow? If we would like to run Windows testing ever on the CI, we will need to solve this issue somehow. |
@ossy-szeged I've suggested (or rather requested feedback on) an approach but haven't heard back since. |
disable service will affect other applicationsuch as UI |
@lygstate You are free to re-enable the service after the execution of the automated tests. |
Yeap, but it's a budren, |
+1 for @akosthekiss's suggestion. It's not a burden to modify the test runner script to disable the |
Well, it can be scripted, I guess. Then it is less of a burden. And I definitely prefer the "scripting burden" over cluttering code with Windows-specific debug-popup-blocking magic only because Windows effectively blocks automated testing. |
No sure if have such a script, there code is also references to other implementation. I'l stick this locally as it works for me |
For not popup dialog when crash happend on MSVC/win32
related issue: #4463
JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo [email protected]