-
Notifications
You must be signed in to change notification settings - Fork 35
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
MWE failure in SHA #101
Comments
Just a comment, your In cases where you don't define new structs/methods, you can replace the whole thing with just frame = JuliaInterpreter.prepare_thunk(m, ex)
JuliaInterpreter.finish_and_return!(JuliaStackFrame[], frame) where |
Aaah, I see now. Will do. (I was just using the recipe from #13) |
Right, but #13 deliberately doesn't put it in a function. By not compiling it, it avoids the world-age errors. (Again, here not an issue anyway.) |
It may still fail the test due to the |
Currently the tests for the stdlib SHA fail in the interpreter and that causes a latent bug in the runtests.jl of SHA to come up all X's in the interpreter tests. The problem is that the function
warn
is used there, which is undefined, instead of the macro call@warn
. I have submitted a PR for that, and once that is merged, then there are two failures in SHA, both related to sha1. The following code, when run from the JuliaInterpreter/test directory shows the problem. Interestingly, if nstmts is set to only 10000 instead of 1000000, then the test passes.The text was updated successfully, but these errors were encountered: