-
Notifications
You must be signed in to change notification settings - Fork 3k
Cellular: not-supported error if MODEM_ON_BOARD not defined #4672
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
@@ -439,6 +439,8 @@ static void unlock() | |||
|
|||
#else | |||
|
|||
#error [NOT_SUPPORTED] MODEM_ON_BOARD should be set for this test to be functional |
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.
I believe this can be even simplified, and print this error on the top of the file, this empty main is not required by our tools
@studavekar
If a test is empty, it leads to undef. Therefore if a test requires additional details, it should print an error [NOT SUPPORTED].
279b3da
to
334c02f
Compare
I simplified the test, should be fine now, not report UNDEF |
/morph test-nightly |
Result: FAILUREYour command has finished executing! Here's what you wrote!
OutputTest failed! |
At least we can see now most of the jobs are green so fix is active ! |
/morph test-nightly |
Result: FAILUREYour command has finished executing! Here's what you wrote!
OutputTest failed! |
/morph test-nightly |
Result: ABORTEDYour command has finished executing! Here's what you wrote!
OutputTest failed! |
Restarting (timeout in one host process) /morph test-nightly |
Result: FAILUREYour command has finished executing! Here's what you wrote!
OutputTest failed! |
K64F failed with
|
MAX32630FTHR failed with
There hasn't been any utest changes AFAIK so this looks like a transient CI issue |
we need this change to run nightly on other PR /morph test-nightly |
Result: SUCCESSYour command has finished executing! Here's what you wrote!
OutputAll builds and test passed! |
If a test is empty, it leads to undef. Therefore if a test requires additional
details, it should print an error [NOT SUPPORTED].
This will require nighlty to verify.
This is the fix for the patch came from #4446
@hasnainvirk