ubinos
tasktest06.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 !(UBINOS__UBIK_TEST__EXCLUDE_TASKTESTSET2 == 1)
#include <stdio.h>
#include <stdlib.h>
#define TASKWORKINGTIMEMS 5
extern volatile unsigned int _g_ubik_test_count1;
static void tasktest06_task1func(void * arg) {
unsigned int waitvalue = TASKWORKINGTIMEMS * bsp_getbusywaitcountperms();
bsp_busywait(waitvalue);
}
int r;
int r2;
unsigned int i;
unsigned int j;
task_pt * task_p;
unsigned int size_old;
unsigned int count_old;
unsigned int size;
unsigned int count;
unsigned int sleepvalue = ubik_timemstotick(TASKWORKINGTIMEMS);
printf("\r\n");
printf("<test>\r\n");
printf("<name>ubik_test_tasktest06</name>\r\n");
printf("<description>Test for memory leak by task</description>\n\r");
printf("<message>\n\r");
r = heap_getallocatedsize(NULL, &size_old);
if (0 != r) {
printf("fail at heap_getallocatedsize\r\n");
goto end0;
}
r = heap_getallocatedcount(NULL, &count_old);
if (0 != r) {
printf("fail at heap_getallocatedcount\r\n");
goto end0;
}
if (0 != r) {
printf("fail at mutex_create(), err=%d\r\n", r);
r = -1;
goto end0;
}
task_p = malloc(sizeof(task_pt) * UBINOS__UBIK_TEST__MEMLEAK_TASKCOUNT);
if (NULL == task_p) {
printf("fail at malloc()\r\n");
r = -1;
goto end1;
}
r = 0;
printf("|----------|\r\n ");
for (i=0; i<UBINOS__UBIK_TEST__MEMLEAK_TESTCOUNT; i++) {
for (j=0; j<UBINOS__UBIK_TEST__MEMLEAK_TASKCOUNT; j++) {
r = task_create(&task_p[j], tasktest06_task1func, NULL, task_getpriority(NULL)-1, 0, "tasktest06 task 1");
if (0 != r) {
printf("\r\n");
printf("test %d, task %d\r\n", i, j);
printf("fail at task_create(), err=%d\r\n", r);
r = -1;
break;
}
}
task_sleep(sleepvalue * _g_ubik_test_count1 * 2);
while (0 < _g_ubik_test_count1) {
task_sleep(sleepvalue);
}
if (0 != r) {
break;
}
if (0 == i%(UBINOS__UBIK_TEST__MEMLEAK_TESTCOUNT/10)) {
printf("+");
}
}
if (0 == r) {
printf("\r\n");
printf("pass %d tests creating and deleting %d tasks\r\n", i, j);
}
free(task_p);
end1:
if (0 != r2) {
printf("fail at mutex_delete(), err=%d\r\n", r2);
r = -1;
}
if (0 == r) {
if (0 != r2) {
printf("fail at heap_getallocatedsize\r\n");
r = -1;
goto end0;
}
if (0 != r2) {
printf("fail at heap_getallocatedcount\r\n");
r = -1;
goto end0;
}
if (size_old != size || count_old != count) {
printf("memory leak was detected\r\n");
r = -1;
goto end0;
}
}
end0:
if (0 != r) {
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 /* !(UBINOS__UBIK_TEST__EXCLUDE_TASKTESTSET2 == 1) */
mutex_unlock
int mutex_unlock(mutex_pt mutex)
mutex_lock
int mutex_lock(mutex_pt mutex)
ubik_collectgarbage
int ubik_collectgarbage(void)
ubik_timemstotick
unsigned int ubik_timemstotick(unsigned int timems)
mutex_delete
int mutex_delete(mutex_pt *mutex_p)
ubik_test.h
ubik test API
bsp_getbusywaitcountperms
unsigned int bsp_getbusywaitcountperms(void)
__task_tip_t
Definition: task.h:361
bsp_busywait
void bsp_busywait(unsigned int count)
__mutex_tip_t
Definition: mutex.h:257
_g_ubik_test_count1
volatile unsigned int _g_ubik_test_count1
태스크 별 시험 진행 상황을 저장하는 전역 변수 1
task_create
int task_create(task_pt *task_p, taskfunc_ft func, void *arg, int priority, unsigned int stackdepth, const char *name)
task_getpriority
int task_getpriority(task_pt task)
heap_getallocatedcount
int heap_getallocatedcount(heap_pt heap, unsigned int *count_p)
NULL
#define NULL
Definition: type.h:65
mutex_create
int mutex_create(mutex_pt *mutex_p)
stdlib.h
stdlib (Standard Library) API
task_sleep
int task_sleep(unsigned int tick)
ubik_test_tasktest06
int ubik_test_tasktest06(void)
Test for memory leak by task.
heap_getallocatedsize
int heap_getallocatedsize(heap_pt heap, unsigned int *size_p)
_g_ubik_test_mutex
mutex_pt _g_ubik_test_mutex
시험 용 뮤택스