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:
@@ -86,7 +86,11 @@ static int get_alarm_summary_ack_decode_apdu(uint8_t *apdu,
|
||||
return len;
|
||||
}
|
||||
|
||||
#if defined(CONFIG_ZTEST_NEW_API)
|
||||
ZTEST(getalarm_tests, testGetAlarmSummaryAck)
|
||||
#else
|
||||
static void testGetAlarmSummaryAck(void)
|
||||
#endif
|
||||
{
|
||||
uint8_t apdu[480] = { 0 };
|
||||
int len = 0;
|
||||
@@ -135,7 +139,11 @@ static void testGetAlarmSummaryAck(void)
|
||||
zassert_equal(alarm_data.alarmState, test_alarm_data.alarmState, NULL);
|
||||
}
|
||||
|
||||
#if defined(CONFIG_ZTEST_NEW_API)
|
||||
ZTEST(getalarm_tests, testGetAlarmSummary)
|
||||
#else
|
||||
static void testGetAlarmSummary(void)
|
||||
#endif
|
||||
{
|
||||
uint8_t apdu[480] = { 0 };
|
||||
int len = 0;
|
||||
@@ -158,6 +166,9 @@ static void testGetAlarmSummary(void)
|
||||
/**
|
||||
* Main entry point for testing
|
||||
*/
|
||||
#if defined(CONFIG_ZTEST_NEW_API)
|
||||
ZTEST_SUITE(getalarm_tests, NULL, NULL, NULL, NULL, NULL);
|
||||
#else
|
||||
void test_main(void)
|
||||
{
|
||||
ztest_test_suite(getalarm_tests,
|
||||
@@ -167,3 +178,4 @@ void test_main(void)
|
||||
|
||||
ztest_run_test_suite(getalarm_tests);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user