-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix regression in error line numbers
see e.g. #922
- Loading branch information
1 parent
042c4d5
commit 35c5234
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35c5234
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same failure on osx travis, just took longer than the buildbots did https://travis-ci.org/JuliaLang/julia/jobs/82073804
35c5234
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Running this on OSX, it looks like
jl_lookup_code_address
isn't doing what we want it to do:I get
???
for every one of those addresses except11
and13
:35c5234
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gcc does inlining differently, so it ends up with a slightly different backtrace.
if you aren't on a buildbot (which uses system unwind), the libosxunwind backtrace should look like:
35c5234
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok I guess the test should search for
:test_throw_commoning
.