-
Notifications
You must be signed in to change notification settings - Fork 2.1k
fix(release): ensure debuginfo file contains debugging info #4790
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
Merged
+55
−22
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,7 @@ panic = "abort" | |
[profile.release] | ||
panic = "abort" | ||
lto = true | ||
strip = "none" | ||
|
||
[profile.bench] | ||
strip = "debuginfo" |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
"""Tests to check several aspects of the binaries""" | ||
|
||
import re | ||
import subprocess | ||
|
||
import pytest | ||
|
||
from framework import utils | ||
|
||
|
||
@pytest.mark.timeout(500) | ||
def test_firecracker_binary_static_linking(microvm_factory): | ||
""" | ||
Test to make sure the firecracker binary is statically linked. | ||
""" | ||
fc_binary_path = microvm_factory.fc_binary_path | ||
_, stdout, stderr = utils.check_output(f"file {fc_binary_path}") | ||
assert "" in stderr | ||
# expected "statically linked" for aarch64 and | ||
# "static-pie linked" for x86_64 | ||
assert "statically linked" in stdout or "static-pie linked" in stdout | ||
|
||
|
||
def test_release_debuginfo(microvm_factory): | ||
"""Ensure the debuginfo file has the right ELF sections""" | ||
fc_binary = microvm_factory.fc_binary_path | ||
debuginfo = fc_binary.with_suffix(".debug") | ||
stdout = subprocess.check_output( | ||
["readelf", "-S", str(debuginfo)], | ||
encoding="ascii", | ||
) | ||
matches = { | ||
match[0] for match in re.findall(r"\[..] (\.(\w|\.)+)", stdout, re.MULTILINE) | ||
} | ||
needed_sections = { | ||
".debug_aranges", | ||
".debug_info", | ||
".debug_abbrev", | ||
".debug_line", | ||
".debug_frame", | ||
".debug_str", | ||
".debug_ranges", | ||
} | ||
missing_sections = needed_sections - matches | ||
assert missing_sections == set() |
22 changes: 0 additions & 22 deletions
22
tests/integration_tests/functional/test_binary_static_linking.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.