-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: posix: common: separate xsi realtime passing to standalone test
posix.common contains testsuites that can be separated into smaller groups of tests. This change moves mqueue into a singular testsuite at tests/posix/message_passing app directory. Signed-off-by: Marvin Ouma <[email protected]>
- Loading branch information
Showing
11 changed files
with
210 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* Copyright (c) 2023 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/ { | ||
ramdisk0 { | ||
compatible = "zephyr,ram-disk"; | ||
disk-name = "RAM"; | ||
sector-size = <512>; | ||
sector-count = <160>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
CONFIG_POSIX_API=y | ||
CONFIG_ZTEST=y | ||
CONFIG_LOG=y | ||
|
||
CONFIG_POSIX_AEP_CHOICE_BASE=y | ||
CONFIG_POSIX_MESSAGE_PASSING=y | ||
CONFIG_POSIX_SHARED_MEMORY_OBJECTS=y | ||
CONFIG_POSIX_SYNCHRONIZED_IO=y | ||
|
||
CONFIG_FILE_SYSTEM=y | ||
CONFIG_POSIX_FILE_SYSTEM=y | ||
|
||
CONFIG_FAT_FILESYSTEM_ELM=y | ||
CONFIG_POSIX_FILE_SYSTEM=y | ||
CONFIG_POSIX_FILE_SYSTEM_R=y | ||
CONFIG_MAIN_STACK_SIZE=4096 | ||
CONFIG_ZTEST_STACK_SIZE=2048 | ||
CONFIG_EVENTFD=n | ||
CONFIG_DISK_DRIVER_RAM=y | ||
CONFIG_DYNAMIC_THREAD=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* | ||
* Copyright (c) 2025 Marvin Ouma <[email protected]> | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#include <zephyr/ztest.h> | ||
|
||
extern void before(void *arg); | ||
extern void after(void *arg); | ||
|
||
ZTEST_SUITE(xsi_realtime, NULL, NULL, before, after, NULL); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.