ubinos
stimertest01.c
/*
Copyright (C) 2009 Sung Ho Park
Contact: ubinos.org@gmail.com
This file is part of the lib_ubik_test component of the Ubinos.
GNU General Public License Usage
This file may be used under the terms of the GNU
General Public License version 3.0 as published by the Free Software
Foundation and appearing in the file license_gpl3.txt included in the
packaging of this file. Please review the following information to
ensure the GNU General Public License version 3.0 requirements will be
met: http://www.gnu.org/copyleft/gpl.html.
GNU Lesser General Public License Usage
Alternatively, this file may be used under the terms of the GNU Lesser
General Public License version 2.1 as published by the Free Software
Foundation and appearing in the file license_lgpl.txt included in the
packaging of this file. Please review the following information to
ensure the GNU Lesser General Public License version 2.1 requirements
will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
Commercial Usage
Alternatively, licensees holding valid commercial licenses may
use this file in accordance with the commercial license agreement
provided with the software or, alternatively, in accordance with the
terms contained in a written agreement between you and rightful owner.
*/
#if (1 != UBINOS__UBIK_TEST__EXCLUDE_STIMERTESTSET)
#include <stdio.h>
#include <stdlib.h>
extern volatile unsigned int _g_ubik_test_result;
extern volatile unsigned int _g_ubik_test_count1;
extern volatile unsigned int _g_ubik_test_count2;
static void stimertest01_task1func(void * arg) {
int r;
int i;
unsigned int waitvalue = UBINOS__UBIK_TEST__TASKWAITTIMEMS * bsp_getbusywaitcountperms();
unsigned int waittick = 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("\r\n");
printf("task 1 sets stimer\r\n");
if (0 != r) {
printf("task 1: fail at stimer_set(), err=%d\r\n", r);
goto end0;
}
printf("task 1 starts stimer\r\n");
if (0 != r) {
printf("task 1: fail at stimer_start(), err=%d\r\n", r);
goto end0;
}
printf("task 1 waits a signal from stimer\r\n");
if (0 != r) {
printf("task 1: fail at sem_take(), err=%d\r\n", r);
goto end0;
}
printf("\r\n");
printf("task 1 receives a signal from stimer\r\n");
printf("task 1 wakes up\r\n");
for (i=0; i<UBINOS__UBIK_TEST__TASKLOOPCOUNT * 1; i++) {
printf("1");
bsp_busywait(waitvalue);
}
printf("\r\n");
printf("task 1 waits a signal from stimer\r\n");
if (0 != r) {
printf("task 1: fail at sem_take(), err=%d\r\n", r);
goto end0;
}
printf("\r\n");
printf("task 1 receives a signal from stimer\r\n");
printf("task 1 wakes up\r\n");
for (i=0; i<UBINOS__UBIK_TEST__TASKLOOPCOUNT * 1; i++) {
printf("1");
bsp_busywait(waitvalue);
}
printf("\r\n");
printf("task 1 stops stimer\r\n");
if (0 != r) {
printf("task 1: fail at stimer_stop(), err=%d\r\n", r);
goto end0;
}
printf("task 1 waits a signal from stimer with timeout (for %d ms)\r\n", ubik_ticktotimems(waittick * 2));
r = sem_take_timed(_g_ubik_test_sem, waittick * 2);
if (UBIK_ERR__TIMEOUT != r) {
printf("task 1: fail at sem_take_timed(), err=%d\r\n", r);
goto end0;
}
printf("\r\n");
printf("task 1 wakes up\r\n");
for (i=0; i<UBINOS__UBIK_TEST__TASKLOOPCOUNT * 1; i++) {
printf("1");
bsp_busywait(waitvalue);
}
printf("\r\n");
end0:
printf("task 1 ends\r\n");
}
static void stimertest01_task2func(void * arg) {
int i;
unsigned int waitvalue = UBINOS__UBIK_TEST__TASKWAITTIMEMS * bsp_getbusywaitcountperms();
for (i=0; i<UBINOS__UBIK_TEST__TASKLOOPCOUNT * 7; i++) {
printf("2");
bsp_busywait(waitvalue);
}
printf("\r\n");
printf("task 2 ends\r\n");
}
int r;
int r2;
unsigned int count1;
unsigned int count2;
unsigned int sleepvalue = ubik_timemstotick(UBINOS__UBIK_TEST__TASKWAITTIMEMS) * UBINOS__UBIK_TEST__TASKLOOPCOUNT / 3;
printf("\r\n");
printf("<test>\r\n");
printf("<name>ubik_test_stimertest01</name>\r\n");
printf("<description>Test on periodic notification function of semaphore timer</description>\n\r");
printf("<message>\n\r");
if (0 != r) {
printf("fail at stimer_create(), err=%d\r\n", r);
r = -1;
goto end0;
}
if (0 != r) {
printf("fail at semb_create(), err=%d\r\n", r);
r = -1;
goto end1;
}
printf("create task 2\r\n");
r = task_create(&_g_ubik_test_task_a[2-1], stimertest01_task2func, NULL, task_getpriority(NULL)-2, 0, "stimertest01 task 2");
if (0 != r) {
printf("fail at task_create(), err=%d\r\n", r);
r = -1;
goto end2;
}
task_sleep(sleepvalue);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 01: ");
if (count1 != _g_ubik_test_count1 || count2 == _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("create task 1\r\n");
r = task_create(&_g_ubik_test_task_a[1-1], stimertest01_task1func, NULL, task_getpriority(NULL)-1, 0, "stimertest01 task 1");
if (0 != r) {
printf("fail at task_create(), err=%d\r\n", r);
r = -1;
goto end3;
}
task_sleep(sleepvalue);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 02: ");
if (count1 == _g_ubik_test_count1 || count2 != _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue * 2);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 03: ");
if (count1 != _g_ubik_test_count1 || count2 == _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue * 2);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 04: ");
if (count1 != _g_ubik_test_count1 || count2 == _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue * 2);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 05: ");
if (count1 == _g_ubik_test_count1 || count2 != _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue * 2);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 06: ");
if (count1 != _g_ubik_test_count1 || count2 == _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue * 2);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 07: ");
if (count1 == _g_ubik_test_count1 || count2 != _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue * 2);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 08: ");
if (count1 != _g_ubik_test_count1 || count2 == _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue * 2);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 09: ");
if (count1 != _g_ubik_test_count1 || count2 == _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue * 2);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 10: ");
if (count1 == _g_ubik_test_count1 || count2 != _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
task_sleep(sleepvalue * 2);
printf("\r\n");
printf("checking\r\n");
task_sleep(sleepvalue);
printf("\r\n");
printf("check point 11: ");
if (count1 != _g_ubik_test_count1 || count2 == _g_ubik_test_count2) {
printf("fail\r\n");
r = -1;
goto end3;
}
printf("pass\r\n");
r = 0;
end3:
if (0 != r2) {
printf("fail at task_join(), err=%d\r\n", r2);
r = -1;
}
end2:
if (0 != r2) {
printf("fail at sem_delete(), err=%d\r\n", r2);
r = -1;
}
end1:
if (0 != r2) {
printf("fail at stimer_delete(), err=%d\r\n", r2);
r = -1;
}
end0:
if (0 != r || 0 > _g_ubik_test_result) {
r = -1;
}
else {
r = 0;
}
printf("</message>\n\r");
printf("<result>");
if (0 == r) {
printf("pass");
}
else {
printf("fail");
}
printf("</result>\r\n");
printf("</test>\r\n");
printf("\r\n");
return r;
}
#endif /* (1 != UBINOS__UBIK_TEST__EXCLUDE_STIMERTESTSET) */
_g_ubik_test_stimer
stimer_pt _g_ubik_test_stimer
시험 용 세마포어 타이머
_g_ubik_test_task_a
task_pt _g_ubik_test_task_a[4]
시험 용 태스크 배열
stimer_start
int stimer_start(stimer_pt stimer)
task_join
int task_join(task_pt *task_p, int *result_p, int count)
__stimer_tip_t
Definition: stimer.h:176
stimer_stop
int stimer_stop(stimer_pt stimer)
UBIK_ERR__TIMEOUT
#define UBIK_ERR__TIMEOUT
Definition: ubik.h:55
_g_ubik_test_count2
volatile unsigned int _g_ubik_test_count2
태스크 별 시험 진행 상황을 저장하는 전역 변수 2
ubik_timemstotick
unsigned int ubik_timemstotick(unsigned int timems)
ubik_test.h
ubik test API
bsp_getbusywaitcountperms
unsigned int bsp_getbusywaitcountperms(void)
__task_tip_t
Definition: task.h:361
sem_take_timed
int sem_take_timed(sem_pt sem, unsigned int tick)
bsp_busywait
void bsp_busywait(unsigned int count)
ubik_ticktotimems
unsigned int ubik_ticktotimems(unsigned int tick)
stimer_set
int stimer_set(stimer_pt stimer, unsigned int tick, sem_pt sem, unsigned int option)
_g_ubik_test_count1
volatile unsigned int _g_ubik_test_count1
태스크 별 시험 진행 상황을 저장하는 전역 변수 1
_g_ubik_test_result
volatile unsigned int _g_ubik_test_result
시험 결과를 저장하는 전역 변수
sem_take
int sem_take(sem_pt sem)
task_create
int task_create(task_pt *task_p, taskfunc_ft func, void *arg, int priority, unsigned int stackdepth, const char *name)
stimer_delete
int stimer_delete(stimer_pt *stimer_p)
sem_delete
int sem_delete(sem_pt *sem_p)
__sem_tip_t
Definition: sem.h:151
task_getpriority
int task_getpriority(task_pt task)
semb_create
int semb_create(sem_pt *sem_p)
stimer_create
int stimer_create(stimer_pt *stimer_p)
NULL
#define NULL
Definition: type.h:65
stdlib.h
stdlib (Standard Library) API
task_sleep
int task_sleep(unsigned int tick)
_g_ubik_test_sem
sem_pt _g_ubik_test_sem
시험 용 세마포어
ubik_test_stimertest01
int ubik_test_stimertest01(void)
Test on periodic notification function of semaphore timer.