-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Tests can break Test #33952
Comments
This is also funny when putting it on e.g. L42:
You get an error with a stacktrace, but the process exits with 0. |
The error seems to come from the Very cool package by the way! |
Yes, I mistakenly added a |
Off-topic, but is this an oversight? julia> Ref(3) == Ref(3)
false |
And #31813 ! |
If you
dev
the brand-new https://github.com/JuliaMath/CheckedArithmetic.jl and then dopkg> test CheckedArithmetic
, all seems well. But then inserterror("oops")
here, and you'll find to your dismay that the tests still pass.If you comment out the "check" tests, then it fails as expected.
EDIT: package has been fixed. It was due to a habit of writing
return val
at the end of a block, and mistakenly doing that in the@check
macro definition.The text was updated successfully, but these errors were encountered: