-
Notifications
You must be signed in to change notification settings - Fork 8k
tests: posix: common: separate xsi_realtime_threads into standalone test #87384
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
base: main
Are you sure you want to change the base?
tests: posix: common: separate xsi_realtime_threads into standalone test #87384
Conversation
zassert_equal(pthread_attr_getinheritsched(&attr, NULL), EINVAL); | ||
} | ||
|
||
zassert_ok(pthread_attr_getinheritsched(&attr, &inheritsched)); |
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.
This assertion is failing for some reason.
CONFIG_POSIX_API=y | ||
CONFIG_ZTEST=y | ||
|
||
CONFIG_POSIX_AEP_CHOICE_BASE=y |
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.
Maybe it would be good to already have the CONFIG_XSI_REALTIME_THREADS
Option Group here.
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.
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.
Of course :-) I think a while ago, I tried to implement some of the robust mutex functionality. It's really quite interesting
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.
Remember seeing that. I can start from there without duplicating effort.
30cab40
to
20b24a9
Compare
|
This pull request has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this pull request will automatically be closed in 14 days. Note, that you can always re-open a closed pull request at any time. |
posix.common contains testsuites that can be separated into smaller groups of tests. This change moves tests in the xsi_realtime_threads option group into a singular testsuite tests/posix/xsi_realtime_threads app directory. Signed-off-by: Marvin Ouma <[email protected]>
20b24a9
to
ad96b26
Compare
|
Fixes #86042
posix.common contains testsuites that can be separated into smaller groups of tests. This change moves tests in the xsi_realtime_threads option group into a singular testsuite tests/posix/xsi_realtime_threads app directory.