Skip to content
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

In case of any Throwable inside a test mark the test as failed. #669

Merged
merged 2 commits into from
Aug 28, 2023

Conversation

mzuehlke
Copy link
Contributor

@mzuehlke mzuehlke commented Jul 6, 2023

closes: #650

@@ -310,6 +310,9 @@ class MUnitRunner(val cls: Class[_ <: Suite], newInstance: () => Suite)
handleNonFatalOrStackOverflow(ex)
case ex: StackOverflowError =>
handleNonFatalOrStackOverflow(ex)
case ex =>
Copy link

@filipwiech filipwiech Jul 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this is a fatal exception, would it then make sense to abort the suite, or not really/it doesn't matter? 🤔

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very good idea 👍

Copy link

@filipwiech filipwiech left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, LGTM, thanks for tackling this! 👍

@mzuehlke
Copy link
Contributor Author

@tgodzik do you have an opinion about this pull request.

Copy link
Contributor

@tgodzik tgodzik left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Look good to me though I haven't touched the codebase too much

@tgodzik tgodzik merged commit 9cc9c36 into scalameta:main Aug 28, 2023
9 checks passed
@mzuehlke mzuehlke deleted the bug/650 branch August 28, 2023 13:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sometimes, errors and failures during a test aren't caught.
3 participants