-
Notifications
You must be signed in to change notification settings - Fork 824
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
Fix wasmer run not interpreting URLs correctly + display fixes #3370
Conversation
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.
Looks like the colored
thing has been updated so this should be good to merge.
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.
Address comments
tests/integration/cli/tests/run.rs
Outdated
} | ||
|
||
fn test_no_imports_wat_path() -> String { | ||
format!("{}/{}", ASSET_PATH, "fib.wat") | ||
let slash = if ASSET_PATH.ends_with('/') { "" } else { "/" }; |
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.
This is not the correct way of joining paths. We should use the std os path join and return a Path
bors r+ |
Merging manually as tests should pass |
3370: Fix wasmer run not interpreting URLs correctly + display fixes r=fschutt a=fschutt Fixes #3366. Fixes #3346. Should land in the 3.0.2 release. Co-authored-by: Felix Schütt <[email protected]> Co-authored-by: Felix Schütt <[email protected]>
This PR was included in a batch that successfully built, but then failed to merge into master (it was a non-fast-forward update). It will be automatically retried. |
Fixes #3366.
Fixes #3346.
Should land in the 3.0.2 release.