-
Notifications
You must be signed in to change notification settings - Fork 141
[hermes] Stop copying shadow crate; run in-place #3035
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
Open
joshlf
wants to merge
1
commit into
G4otukodorqa35fh3ms527yqmldc7g7ft
Choose a base branch
from
G5bgufougyvpozncgq4yokgx3sie6wfy7
base: G4otukodorqa35fh3ms527yqmldc7g7ft
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+10
−122
Open
Changes from all commits
Commits
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
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -95,11 +95,9 @@ exec "{1}" "$@" | |||||
| let mock_json_file = test_case_root.join("mock_charon_output.json"); | ||||||
| if mock_json_file.exists() { | ||||||
| // Instead of writing the mock json to the shadow root (which gets cleared by build_shadow_crate), write it to the test workspace root! | ||||||
| let shadow_root = | ||||||
| sandbox_root.join("target").join("hermes").join("hermes_test_target").join("shadow"); | ||||||
| // We still need the path for mapping `[SHADOW_ROOT]` correctly! | ||||||
| // But we construct it manually since it might not be created yet: | ||||||
| let abs_shadow_root = std::env::current_dir().unwrap().join(&shadow_root); | ||||||
| let abs_shadow_root = std::env::current_dir().unwrap().join(&sandbox_root); | ||||||
|
Contributor
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. The variable
Suggested change
|
||||||
| let abs_test_case_root = | ||||||
| test_case_root.canonicalize().unwrap_or_else(|_| test_case_root.to_path_buf()); | ||||||
|
|
||||||
|
|
@@ -187,13 +185,6 @@ exec "{1}" "$@" | |||||
| } | ||||||
| } | ||||||
|
|
||||||
| // Tests can specify the expected shadow crate content. | ||||||
| let actual_shadow = sandbox_root.join("target/hermes/hermes_test_target/shadow"); | ||||||
| let expected_shadow = test_case_root.join("expected"); | ||||||
| if expected_shadow.exists() { | ||||||
| assert_directories_match(&expected_shadow, &actual_shadow)?; | ||||||
| } | ||||||
|
|
||||||
| // Load Config | ||||||
| let mut config = TestConfig { artifact: vec![], command: vec![] }; | ||||||
| let config_file = test_case_root.join("expected_config.toml"); | ||||||
|
|
@@ -324,26 +315,6 @@ fn assert_artifacts_match( | |||||
| Ok(()) | ||||||
| } | ||||||
|
|
||||||
| fn assert_directories_match(expected: &Path, actual: &Path) -> std::io::Result<()> { | ||||||
| for entry in WalkDir::new(expected) { | ||||||
| let entry = entry?; | ||||||
| if !entry.file_type().is_file() { | ||||||
| continue; | ||||||
| } | ||||||
| let rel = entry.path().strip_prefix(expected).unwrap(); | ||||||
| let act = actual.join(rel); | ||||||
| if !act.exists() { | ||||||
| panic!("Missing file {:?}", rel); | ||||||
| } | ||||||
| let e_txt = fs::read_to_string(entry.path())?.replace("\r\n", "\n"); | ||||||
| let a_txt = fs::read_to_string(&act)?.replace("\r\n", "\n"); | ||||||
| if e_txt != a_txt { | ||||||
| panic!("Mismatch in {:?}", rel); | ||||||
| } | ||||||
| } | ||||||
| Ok(()) | ||||||
| } | ||||||
|
|
||||||
| fn copy_dir_contents(src: &Path, dst: &Path) -> std::io::Result<()> { | ||||||
| fs::create_dir_all(dst)?; | ||||||
| for entry in fs::read_dir(src)? { | ||||||
|
|
||||||
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.
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.
Since this function no longer builds a shadow crate, its name
build_shadow_cratehas become misleading. For better clarity and maintainability, consider renaming it to something likefind_hermes_artifacts. This would also require updating its documentation and any call sites.