-
-
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
Julia 0.6.1: libgit2 test failed #24453
Comments
Looks like a case mismatch, maybe the test needs to normalize case? |
dup #23115 (comment) |
Hi @StefanKarpinski and @vtjnash , I was about to write this. It was already fixed in master. The problematic line was changed from: @test err.msg == "Invalid Content-Type: text/plain" to @test lowercase(err.msg) == lowercase("invalid Content-Type: text/plain") Can it be ported to v0.6 series? Btw, the tests pass after correcting this line. |
@vtjnash, do you suggest to bundle libgit2 with Julia for openSUSE package? I mean, even after this commit that fixes the problem. |
I have the same error when building v0.6.2 from source even though |
It doesn't really indicate a problem, so you can either remove the offending line or change it to the version above. It's fixed in git master. |
We are already in v0.7-alpha. This bug is fixed in v0.7 AFAIK. Question: Do you want me to submit a PR fixing it in v0.6-branch or should we close this bug? |
I guess if you make a PR against the release-0.6 branch to use |
Ok! I will do as soon as I get in home. Thanks |
Fixed. |
Hi guys,
I am trying to build Julia 0.6.1 package to openSUSE and I got this error during
runtest.jl
:I am using libgit2 0.26.0.
The text was updated successfully, but these errors were encountered: