-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
add trimming of new usings_backedges and scanned_methods fields #57879
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ let exe_suffix = splitext(Base.julia_exename())[2] | |
|
||
hello_exe = joinpath(@__DIR__, "hello" * exe_suffix) | ||
@test readchomp(`$hello_exe`) == "Hello, world!" | ||
@test filesize(hello_exe) < filesize(unsafe_string(Base.JLOptions().image_file))/10 | ||
@test filesize(hello_exe) < 2000000 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For me the size is now 1633392. Not sure if this holds on all platforms but we'll find out. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pretty sure we only test |
||
|
||
basic_jll_exe = joinpath(@__DIR__, "basic_jll" * exe_suffix) | ||
lines = split(readchomp(`$basic_jll_exe`), "\n") | ||
|
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.
Not sure if this should be tied to strip-ir or trim, but either seems ok?