Issues/issue 461 update to zephyr v3 4 0 in ci (#463)

* [WIP] Remove unit testcases duplicated under non-unit tree

* [WIP] Update west.yml to Zephyr v3.3.0 (twister verified)

* Update CI to Zephyr v3.4.0 w/ reduced module set

- Update zephyr/module.yml to use Zephyr v3.4.0 + cmsis;
- Update tests to use ZTEST_NEW_API for zephyr builds

Verified by:

1. make clean test
2. ./zephyr/scripts/twister -p unit_testing -T bacnet/zephyr/tests/bacnet

---------

Co-authored-by: Gregory Shue <gregory.shue@legrand.com>
This commit is contained in:
Greg Shue
2023-07-26 14:47:01 -07:00
committed by GitHub
parent 3f7a4d2e19
commit dad9e13485
169 changed files with 1299 additions and 77 deletions
+20
View File
@@ -127,7 +127,11 @@ static int ptransfer_error_decode_apdu(uint8_t *apdu,
return len;
}
#if defined(CONFIG_ZTEST_NEW_API)
ZTEST(ptransfer_tests, test_Private_Transfer_Ack)
#else
static void test_Private_Transfer_Ack(void)
#endif
{
uint8_t apdu[480] = { 0 };
int len = 0;
@@ -172,7 +176,11 @@ static void test_Private_Transfer_Ack(void)
zassert_true(bacapp_same_value(&data_value, &test_data_value), NULL);
}
#if defined(CONFIG_ZTEST_NEW_API)
ZTEST(ptransfer_tests, test_Private_Transfer_Error)
#else
static void test_Private_Transfer_Error(void)
#endif
{
uint8_t apdu[480] = { 0 };
int len = 0;
@@ -223,7 +231,11 @@ static void test_Private_Transfer_Error(void)
zassert_true(bacapp_same_value(&data_value, &test_data_value), NULL);
}
#if defined(CONFIG_ZTEST_NEW_API)
ZTEST(ptransfer_tests, test_Private_Transfer_Request)
#else
static void test_Private_Transfer_Request(void)
#endif
{
uint8_t apdu[480] = { 0 };
uint8_t test_value[480] = { 0 };
@@ -267,7 +279,11 @@ static void test_Private_Transfer_Request(void)
return;
}
#if defined(CONFIG_ZTEST_NEW_API)
ZTEST(ptransfer_tests, test_Unconfirmed_Private_Transfer_Request)
#else
static void test_Unconfirmed_Private_Transfer_Request(void)
#endif
{
uint8_t apdu[480] = { 0 };
uint8_t test_value[480] = { 0 };
@@ -313,6 +329,9 @@ static void test_Unconfirmed_Private_Transfer_Request(void)
*/
#if defined(CONFIG_ZTEST_NEW_API)
ZTEST_SUITE(ptransfer_tests, NULL, NULL, NULL, NULL, NULL);
#else
void test_main(void)
{
ztest_test_suite(ptransfer_tests,
@@ -324,3 +343,4 @@ void test_main(void)
ztest_run_test_suite(ptransfer_tests);
}
#endif