-
Notifications
You must be signed in to change notification settings - Fork 530
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
macros: fix invalid file paths #2042
Conversation
This regression was introduced in: 88c13fb Co-authored-by: yjhtry <[email protected]>
This PR touches files which potentially affect the outcome of the tests of an exercise. This will cause all students' solutions to affected exercises to be re-tested. If this PR does not affect the result of the test (or, for example, adds an edge case that is not worth rerunning all tests for), please add the following to the merge-commit message which will stops student's tests from re-running. Please copy-paste to avoid typos.
For more information, refer to the documentation. If you are unsure whether to add the message or not, please ping |
based on #2041 I made sure I could actually get some of the invalid tests to fail with an incorrect solution: test output:
source of test double_commas: fn main() {
// a single trailing comma is okay, but two is not
let _hm: HashMap<_, _> = hashmap!('a' => 2, ,);
} incorrect solution that triggers the failure: #[macro_export]
macro_rules! hashmap {
($($key:expr => $value:expr,)+) => { $crate::hashmap!($($key => $value),+) };
($($key:expr => $value:expr),*) => {
{
let mut _map = ::std::collections::HashMap::new();
$(
_map.insert($key, $value);
)*
_map
}
};
($key:expr => $value:expr , , ) => {
{
let mut _map = ::std::collections::HashMap::new();
_map.insert($key, $value);
_map
}
};
} |
@ellnix did you see this? The tests are currently failing no matter what, would be nice to get this merged. |
@senekor I did see it but I didn't know it was that urgent, I'll look at it right now. |
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.
LGTM! This indeed fails for the right reasons, correct values are passed to --bin
. I can't see any problems.
This regression was introduced in:
88c13fb
[no important files changed]
Co-authored-by: yjhtry [email protected]