Uh oh!
There was an error while loading. Please reload this page.
Show the message in case of should_panic failure - #61068
Conversation
rust-highfive
commented
May 23, 2019
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @Mark-Simulacrum (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
This comment has been minimized.
This comment has been minimized.
7df5f6d to
0e53973Compare
This comment has been minimized.
This comment has been minimized.
Centril
commented
May 23, 2019
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Centril
commented
May 30, 2019
varkor
left a comment
There was a problem hiding this comment.
Looks good after fixing the string issues. You can use ./x.py check to make sure everything type checks.
There was a problem hiding this comment.
| _ => TrFailedMsg("test did not panic as expected"), | |
| _ => TrFailedMsg("test did not panic as expected".to_string()), |
There was a problem hiding this comment.
| assert!(res == TrFailedMsg("test did not panic as expected")); | |
| assert!(res == TrFailedMsg("test did not panic as expected".to_string())); |
varkor
commented
May 30, 2019
@bors r- Sorry, I didn't even spot that this wasn't passing. |
6236b80 to
f6f5feaCompare
This comment has been minimized.
This comment has been minimized.
f6f5fea to
7805691Compare
This comment has been minimized.
This comment has been minimized.
bors
commented
Jun 16, 2019
☔ The latest upstream changes (presumably #61739) made this pull request unmergeable. Please resolve the merge conflicts. |
This comment has been minimized.
This comment has been minimized.
bf41a98 to
26d3518Compare
This comment has been minimized.
This comment has been minimized.
26d3518 to
d68967dCompare
This comment has been minimized.
This comment has been minimized.
varkor
commented
Jun 23, 2019
@chansuke: looks like a test is still failing? |
chansuke
commented
Jul 15, 2019
There was a problem hiding this comment.
Sorry, I didn't check carefully enough. This should be:
(&ShouldPanic::Yes,Ok(())) => TrFailedMsg("test did not panic as expected".to_string()),
_ => TrFailed,There was a problem hiding this comment.
| assert!(res ==TrFailedMsg("test did not panic as expected".to_string())); | |
| assert_eq!(res,TrFailedMsg("test did not panic as expected".to_string())); |
varkor
commented
Jul 22, 2019
If you look at the error in Travis, you'll see it says: If you then look at the file |
totsteps
commented
Jul 30, 2019
Ping from triage @chansuke any update on this? All checks all failing at the moment. Thanks |
chansuke
commented
Jul 31, 2019
@gagan0723 Sorry for the late response, I will fix that now. |
d68967d to
5dfe71eCompare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
hdhoang
commented
Aug 9, 2019
ping from triage @chansuke, any update on this PR? thanks for your effort! |
e733944 to
333644aComparerust-highfive
commented
Aug 10, 2019
The job Click to expand the log.I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
varkor
commented
Aug 11, 2019
JohnCSimon
commented
Aug 17, 2019
wirelessringo
commented
Aug 30, 2019
Closing due to inactivity. Thank you @chansuke for your work on this PR. Please reopen this PR when you have a chance to make necessary changes, and be warned that pushing to this PR while it is closed prevents it from being reopened. |
This PR fixes a problem in #60790. Closes#60790.