efl

Форк
0
/
eina_test_lalloc.c 
90 строк · 2.2 Кб
1
/* EINA - EFL data type library
2
 * Copyright (C) 2008 Cedric Bail
3
 *
4
 * This library is free software; you can redistribute it and/or
5
 * modify it under the terms of the GNU Lesser General Public
6
 * License as published by the Free Software Foundation; either
7
 * version 2.1 of the License, or (at your option) any later version.
8
 *
9
 * This library is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 * Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public
15
 * License along with this library;
16
 * if not, see <http://www.gnu.org/licenses/>.
17
 */
18

19
#ifdef HAVE_CONFIG_H
20
# include "config.h"
21
#endif
22

23
#include <stdlib.h>
24
#include <stdio.h>
25

26
#include <Eina.h>
27

28
#include "eina_suite.h"
29

30
typedef struct _Eina_Lazy_Allocator_Test Eina_Lazy_Allocator_Test;
31
struct _Eina_Lazy_Allocator_Test
32
{
33
   void *data;
34
   int num;
35
};
36

37
static Eina_Bool
38
_test_alloc(Eina_Lazy_Allocator_Test *elat, int num)
39
{
40
   if (elat->num == 10 && num == 1)
41
      return EINA_FALSE;
42

43
   if (elat->num == 122 && num == 128)
44
      return EINA_FALSE;
45

46
   elat->num += num;
47
   elat->data = realloc(elat->data, elat->num);
48

49
   return EINA_TRUE;
50
}
51

52
static void
53
_test_free(Eina_Lazy_Allocator_Test *elat)
54
{
55
   free(elat->data);
56
   elat->data = NULL;
57
   elat->num = 0;
58
}
59

60
EFL_START_TEST(eina_lalloc_simple)
61
{
62
   Eina_Lazy_Allocator_Test *elat;
63
   Eina_Lalloc *test;
64
   int i;
65

66
   elat = calloc(1, sizeof (Eina_Lazy_Allocator_Test));
67
      fail_if(!elat);
68

69
   test = eina_lalloc_new(elat, EINA_LALLOC_ALLOC(
70
                             _test_alloc), EINA_LALLOC_FREE(_test_free), 10);
71
      fail_if(!test);
72

73
   for (i = 0; i < 10; ++i)
74
      fail_if(eina_lalloc_element_add(test) != EINA_TRUE);
75
      fail_if(eina_lalloc_element_add(test) != EINA_FALSE);
76
      fail_if(eina_lalloc_elements_add(test, 5) != EINA_TRUE);
77
   for (i = 0; i < 21; ++i)
78
      fail_if(eina_lalloc_element_add(test) != EINA_TRUE);
79

80
      fail_if(eina_lalloc_elements_add(test, 50) != EINA_FALSE);
81

82
      eina_lalloc_free(test);
83
}
84
EFL_END_TEST
85

86
void
87
eina_test_lalloc(TCase *tc)
88
{
89
   tcase_add_test(tc, eina_lalloc_simple);
90
}
91

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.