-
-
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
parallel test crashing on arm (perhaps when there is a firewall) #12344
Comments
With the ABI merging soon, this test no longer segfaults but doesn't succeed (without warnings) just yet:
Looks like a harmless failure due to my Pi being horribly, horribly slow.
function main()
i = 0
timedwait(10.0) do
@time println("foobar")
i += 1
false
end
println(i)
end
main()
Nothing really wrong with Extend the |
Doesn't sound like a bad idea if that fixes the test for you. Would you make a PR? |
Yeah, sure, I'll have a look at it. I wanted to make sure there's no policy against it (ie. "the test suite is not meant to be run on snail-like hardware"). |
ref #9572, we already have issues on buildbots and vm's and other limited-memory scenarios, it would be good to find a way to make the test suite more reliable there. |
It's funny that this is the only issue that is closed directly by the pr merge since it has Anyway, I think we can close this since the "crash" should be fixed. We should open new issues for new test failures. |
The parallel test is failing on arm. The chromebook by default has a firewall that refuses everything. I believe I have set it up to accept all connections. Irrespective, we shouldn't be getting a segfault, and perhaps a better error about connection refused.
The text was updated successfully, but these errors were encountered: