ubinos
tasktest02.c
/*
* Copyright (c) 2009 Sung Ho Park
*
* SPDX-License-Identifier: Apache-2.0
*/
#if (INCLUDE__UBINOS__UBIK_TEST == 1)
#if !(UBINOS__UBIK_TEST__EXCLUDE_TASKTESTSET == 1)
#include <stdio.h>
#include <stdlib.h>
extern volatile unsigned int _g_ubik_test_result;
extern volatile unsigned int _g_ubik_test_count1;
static void tasktest02_task1func(void * arg) {
int r;
int i;
unsigned int waitvalue = UBINOS__UBIK_TEST__TASKWAITTIMEMS * bsp_getbusywaitcountperms();
unsigned int sleepvalue = ubik_timemstotick(UBINOS__UBIK_TEST__TASKWAITTIMEMS) * UBINOS__UBIK_TEST__TASKLOOPCOUNT;
for (i=0; i<(UBINOS__UBIK_TEST__TASKLOOPCOUNT * 1); i++) {
printf("1");
bsp_busywait(waitvalue);
}
printf("\n");
printf("task 1 tries to sleep (for %d ms)\n", ubik_ticktotimems(sleepvalue));
r = task_sleep(sleepvalue);
if (0 != r) {
printf("task 1: fail at task_sleep(), err=%d\n", r);
goto end0;
}
printf("task 1 wakes up\n");
for (i=0; i<(UBINOS__UBIK_TEST__TASKLOOPCOUNT * 1); i++) {
printf("1");
bsp_busywait(waitvalue);
}
printf("\n");
end0:
printf("task 1 ends\n");
}
int r;
int r2;
unsigned int count1;
unsigned int sleepvalue = ubik_timemstotick(UBINOS__UBIK_TEST__TASKWAITTIMEMS) * UBINOS__UBIK_TEST__TASKLOOPCOUNT / 3;
printf("\n");
printf("<test>\n");
printf("<name>ubik_test_tasktest02</name>\n");
printf("<description>Test on sleep function of task</description>\n");
printf("<message>\n");
printf("create task 1\n");
r = task_create_noautodel(&_g_ubik_test_task_a[0], tasktest02_task1func, NULL, task_getpriority(NULL)-1, 0, "tasktest02 task 1");
if (0 != r) {
printf("fail at task_create_noautodel(), err=%d\n", r);
r = -1;
goto end0;
}
r = task_sleep(sleepvalue);
if (0 != r) {
printf("fail at task_sleep(), err=%d\n", r);
r = -1;
goto end1;
}
printf("\n");
printf("checking\n");
r = task_sleep(sleepvalue);
if (0 != r) {
printf("fail at task_sleep(), err=%d\n", r);
r = -1;
goto end1;
}
printf("\n");
printf("check point 01: ");
if (count1 == _g_ubik_test_count1) {
printf("fail\n");
r = -1;
goto end1;
}
printf("pass\n");
r = task_sleep(sleepvalue * 2);
if (0 != r) {
printf("fail at task_sleep(), err=%d\n", r);
r = -1;
goto end1;
}
printf("checking\n");
r = task_sleep(sleepvalue);
if (0 != r) {
printf("fail at task_sleep(), err=%d\n", r);
r = -1;
goto end1;
}
printf("check point 02: ");
if (count1 != _g_ubik_test_count1) {
printf("fail\n");
r = -1;
goto end1;
}
printf("pass\n");
r = task_sleep(sleepvalue * 2);
if (0 != r) {
printf("fail at task_sleep(), err=%d\n", r);
r = -1;
goto end1;
}
printf("\n");
printf("checking\n");
r = task_sleep(sleepvalue);
if (0 != r) {
printf("fail at task_sleep(), err=%d\n", r);
r = -1;
goto end1;
}
printf("\n");
printf("check point 03: ");
if (count1 == _g_ubik_test_count1) {
printf("fail\n");
r = -1;
goto end1;
}
printf("pass\n");
r = 0;
end1:
if (0 != r2) {
printf("fail at task_join_and_delete(), err=%d\n", r2);
r = -1;
}
end0:
if (0 != r || 0 > _g_ubik_test_result) {
r = -1;
}
else {
r = 0;
}
printf("</message>\n");
printf("<result>");
if (0 == r) {
printf("pass");
}
else {
printf("fail");
}
printf("</result>\n");
printf("</test>\n");
printf("\n");
return r;
}
#endif /* !(UBINOS__UBIK_TEST__EXCLUDE_TASKTESTSET == 1) */
#endif /* (INCLUDE__UBINOS__UBIK_TEST == 1) */
void bsp_busywait(unsigned int count)
unsigned int bsp_getbusywaitcountperms(void)
stdlib (Standard Library) API
Definition: task.h:342
int task_create_noautodel(task_pt *task_p, taskfunc_ft func, void *arg, int priority, unsigned int stackdepth, const char *name)
int task_join_and_delete(task_pt *task_p, int *result_p, int count)
int task_sleep(unsigned int tick)
int task_getpriority(task_pt task)
#define NULL
Definition: type.h:42
unsigned int ubik_ticktotimems(unsigned int tick)
unsigned int ubik_timemstotick(unsigned int timems)
ubik test API
volatile unsigned int _g_ubik_test_count1
태스크 별 시험 진행 상황을 저장하는 전역 변수 1
int ubik_test_tasktest02(void)
Test on sleep function of task.
task_pt _g_ubik_test_task_a[4]
시험 용 태스크 배열
volatile unsigned int _g_ubik_test_result
시험 결과를 저장하는 전역 변수