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
Add an option to abort when a panic alert occurs #10066
Merged
leoetlino
merged 1 commit into
dolphin-emu:master
from
leoetlino:abort-on-panic-alert-option
Aug 30, 2021
Merged
Add an option to abort when a panic alert occurs #10066
leoetlino
merged 1 commit into
dolphin-emu:master
from
leoetlino:abort-on-panic-alert-option
Aug 30, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Prompted by https://dolphin.ci/#/builders/24/builds/985 A 1-character typo in a recent PR caused FifoCI builds to break horribly and spew millions of panic alerts until buildbot crashed. This PR adds a new config option -- defaulting to off -- that allows Dolphin to abort early on when a panic alert occurs instead of continuing forever.
iwubcode
approved these changes
Aug 29, 2021
leoetlino
added a commit
to leoetlino/fifoci
that referenced
this pull request
Aug 29, 2021
Prompted by https://dolphin.ci/#/builders/24/builds/985 A 1-character typo in a recent PR caused FifoCI builds to break horribly and spew millions of panic alerts until buildbot crashed. This PR enables a new config option that allows Dolphin to abort early on when a panic alert occurs instead of continuing forever. Requires PR dolphin-emu/dolphin#10066
Pokechu22
added a commit
to Pokechu22/dolphin
that referenced
this pull request
Sep 30, 2021
PR dolphin-emu#10066 added functionality to call std::abort when a panic alert occurs; however, that PR only implemented it for MsgAlert and not MsgAlertFmtImpl, meaning that the functionality was not used with PanicAlertFmt (only PanicAlert, which is not used frequently).
Pokechu22
added a commit
to Pokechu22/dolphin
that referenced
this pull request
Sep 30, 2021
PR dolphin-emu#10066 added functionality to call std::abort when a panic alert occurs; however, that PR only implemented it for MsgAlert and not MsgAlertFmtImpl, meaning that the functionality was not used with PanicAlertFmt (only PanicAlert, which is not used frequently).
Pokechu22
added a commit
to Pokechu22/dolphin
that referenced
this pull request
Sep 30, 2021
PR dolphin-emu#10066 added functionality to call std::abort when a panic alert occurs; however, that PR only implemented it for MsgAlert and not MsgAlertFmtImpl, meaning that the functionality was not used with PanicAlertFmt (only PanicAlert, which is not used frequently).
Pokechu22
added a commit
to Pokechu22/dolphin
that referenced
this pull request
Oct 1, 2021
PR dolphin-emu#10066 added functionality to call std::abort when a panic alert occurs; however, that PR only implemented it for MsgAlert and not MsgAlertFmtImpl, meaning that the functionality was not used with PanicAlertFmt (only PanicAlert, which is not used frequently).
Pokechu22
added a commit
to Pokechu22/dolphin
that referenced
this pull request
Oct 2, 2021
PR dolphin-emu#10066 added functionality to call std::abort when a panic alert occurs; however, that PR only implemented it for MsgAlert and not MsgAlertFmtImpl, meaning that the functionality was not used with PanicAlertFmt (only PanicAlert, which is not used frequently).
Pokechu22
added a commit
to Pokechu22/dolphin
that referenced
this pull request
Oct 3, 2021
PR dolphin-emu#10066 added functionality to call std::abort when a panic alert occurs; however, that PR only implemented it for MsgAlert and not MsgAlertFmtImpl, meaning that the functionality was not used with PanicAlertFmt (only PanicAlert, which is not used frequently).
Zopolis4
pushed a commit
to Zopolis4/dolphin
that referenced
this pull request
Oct 13, 2021
PR dolphin-emu#10066 added functionality to call std::abort when a panic alert occurs; however, that PR only implemented it for MsgAlert and not MsgAlertFmtImpl, meaning that the functionality was not used with PanicAlertFmt (only PanicAlert, which is not used frequently).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Prompted by https://dolphin.ci/#/builders/24/builds/985
A 1-character typo in a recent PR caused FifoCI builds to break
horribly and spew millions of panic alerts until buildbot crashed.
This PR adds a new config option -- defaulting to off -- that allows
Dolphin to abort early on when a panic alert occurs instead of
continuing forever.