-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Numpy master segfaults in Scipy testsuite #8671
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
Comments
Fixed in #8672, hopefully |
I thought numpy travis checks for compiler warnings, so I wonder why it
didnt catch it...
23.2.2017 1.55 "Eric Wieser" <notifications@github.com> kirjoitti:
… Fixed here, hopefully: #8672 <#8672>
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#8671 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AACI5sFwPWQyhHtn1Wbx8zi1GGW6S95jks5rfNjhgaJpZM4MJXH1>
.
|
These are the only ones (in
|
Is there any way to make travis at least report other warnings? I've only ever seen them when there's also a failure |
I'd guess it's enough to add "-Werror" options to the list in
tools/travis-test.py.
.
I guess one constraint is that they may break the _configtest.c stuff
that Numpy uses for detecting system configuration. But maybe it's
possible to tweak numpy.distutils to do the right thing here?
|
For reporting, is it enough to add -Wall to CFLAGS?
|
I think the issue is that travis is discarding the build stdout/stderr when it succeeds - I've seen warnings be emitted in the past. They just get emitted into nothingness... Maybe I'm just missing something in the travis UI. |
It's not TravisCI, it's pip. |
Possible but nontrivial I suspect. Adding a limited set of explicit warnings to |
we do error out on warnings, the issue is only on our 32 bit build and on 32 bit intp == int so we miss warnings about this. |
but in any case -Wincompatible-pointer-types is probably a good choice for a fatal warning on all builds. |
Current numpy (2017-02-23, f24da28) crashes in Scipy test suite.
Observed on travis, and repro locally. Crashes at
Result from git bisect:
564b7cb is the first bad commit
The text was updated successfully, but these errors were encountered: