-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Adding case insensitive 'error' detection #3669
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.
lol XD
How about making it all case insensitive? |
@bulislaw I thought about it, but I wasn't sure what impact that'd have. I'd rather not make too many changes to this sensitive line at the moment. |
maybe at least |
I thought about that too :) But I don't know if the assembler even outputs warnings that way, have you seen that? |
Ok, lets take a step back :) I don't really mind about all of that, but it's shame to add 1-2 days delay while chasing down issues like that, ultimately my goal is to be able to understand what's going on just by looking at CI logs. I don't understand why we just can't keep full logs, how much storage would it take? And i don't mean But yes I agree the simplest step we can do is to merge this change, which solves my problem for now. |
/morph test |
Result: SUCCESSYour command has finished executing! Here's what you wrote!
OutputAll builds and test passed! |
I agree, I've added verbose logs to the CI 'Build' step now, so hopefully this won't block others in the future. But also if you notice locally that an error is missing without the |
Thanks! |
@bridadan needs an update! |
GCC Assembler errors were being missed because it prints 'error' with a captial 'E'. This change allows the 'e' to be either lower case or upper case.
de9c88b
to
6be8278
Compare
/morph test |
retest uvisor |
Result: SUCCESSYour command has finished executing! Here's what you wrote!
OutputAll builds and test passed! |
retest uvisor |
Description
GCC Assembler errors were being missed because it prints 'error' with a captial 'E'. This change allows the 'e' to be either lower case or upper case.
Status
READY
Migrations
If this PR changes any APIs or behaviors, give a short description of what API users should do when this PR is merged.
NO
Related PRs
This may conflict with #3653
Todos
Notes
Before, the tools would miss errors like the following when it was printed from the assembler:
Now it should list every one of the errors.