-
Notifications
You must be signed in to change notification settings - Fork 158
Svd2rust regress fixes #896
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
Conversation
|
I added another small tweak to fix a clippy warning about lifetime ellision: e5594ba |
|
remove e5594ba and I then think we can merge this |
|
You mean moving it to another PR, or squashing everything? |
ci/svd2rust-regress/src/diff.rs
Outdated
| fn get_source_and_command<'s>(&'s self) -> [Option<(Source<'s>, Command<'s>)>; 2] { | ||
| let split = |s: &'s str| -> (Source, Command) { |
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.
of use function instead of closure
| fn get_source_and_command<'s>(&'s self) -> [Option<(Source<'s>, Command<'s>)>; 2] { | |
| let split = |s: &'s str| -> (Source, Command) { | |
| fn get_source_and_command(&self) -> [Option<(Source, Command)>; 2] { | |
| fn split(s: &str) -> (Source, Command) { |
|
should I update the changelog as well for CI? |
Yes, please. And squash commits. |
882021b to
27ef196
Compare
27ef196 to
f08aadf
Compare
|
done |
I used this to test a fix for #895
I fixed a lot of failing tests, however some of them are still failing. I can open an issue for that.