-
Notifications
You must be signed in to change notification settings - Fork 2k
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
tests: Add test for irq_disable() / irq_restore() #14011
Conversation
Unless I overlooked something, we had no test direct coverage for those two functions before. (Still, chances are good that every second tests fails if |
Will test on a bunch of boards ASAP. |
I have an issue with
|
I have a compilation error on
|
I worked around this by using |
Tested on these boards, only
|
@maribu please rebase! |
f59c583
to
d3c3bac
Compare
Looks like with llvm somehow |
d3c3bac
to
51c19d5
Compare
OK, in the log of test application that could be compiled a hint is given:
So I guess a toolchain update is still pending on
|
@kaspar030 @cgundogan @aabadie @riot-ci can you take a look? |
@maribu if its only one worker we could just re-schedule and hope for the best :D |
The single failed test looks serious, but completely unrelated. |
FYI @gschorcht (don't have any boards to try and replicate :( ) |
Ajj we got the faulty worker again. |
Let's roll the dice again :-D |
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.
ACK!
Thanks for the review :-) |
Contribution description
As the title suggests: Adds a stupidly simple test to check if
irq_disable()
andirq_restore()
work as intended.Testing procedure
BOARD=<SOME_BOARD> make -C tests/irq_disable_restore flash term
Issues/PRs references
Useful to test #13999