Blame view

RIOT/tests/unittests/tests-core/tests-core-atomic.c 6.38 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
  /*
   * Copyright (C) 2014 Martine Lenders <mlenders@inf.fu-berlin.de>
   * Copyright (C) 2015 Eistec AB
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  #include <limits.h>
  #include <stdint.h>
  #include <stdatomic.h>
  
  #include "embUnit.h"
  
  #include "tests-core.h"
  
  /* Test atomic_flag back and forth */
  static void test_atomic_flag(void)
  {
      atomic_flag flag = ATOMIC_FLAG_INIT;
  
      TEST_ASSERT_EQUAL_INT(0, atomic_flag_test_and_set(&flag));
      TEST_ASSERT_EQUAL_INT(1, atomic_flag_test_and_set(&flag));
      atomic_flag_clear(&flag);
      TEST_ASSERT_EQUAL_INT(0, atomic_flag_test_and_set(&flag));
  }
  
  /* Test atomic_fetch_add */
  static void test_atomic_inc_positive(void)
  {
      atomic_int res = ATOMIC_VAR_INIT(0);
  
      TEST_ASSERT_EQUAL_INT(0, atomic_fetch_add(&res, 1));
      TEST_ASSERT_EQUAL_INT(1, atomic_load(&res));
      TEST_ASSERT_EQUAL_INT(1, atomic_fetch_add(&res, 1));
      TEST_ASSERT_EQUAL_INT(2, atomic_load(&res));
      atomic_store(&res, 0);
      for (int i = 0; i < 512; ++i) {
          TEST_ASSERT_EQUAL_INT(i, atomic_fetch_add(&res, 1));
          TEST_ASSERT_EQUAL_INT(i + 1, atomic_load(&res));
      }
  }
  
  static void test_atomic_inc_negative(void)
  {
      atomic_int res = ATOMIC_VAR_INIT(-99);
  
      for (int i = -99; i < 123; ++i) {
          TEST_ASSERT_EQUAL_INT(i, atomic_fetch_add(&res, 1));
          TEST_ASSERT_EQUAL_INT(i + 1, atomic_load(&res));
      }
  }
  
  static void test_atomic_inc_rollover(void)
  {
      atomic_int res = ATOMIC_VAR_INIT(INT_MAX - 30);
  
      for (int i = 0; i < 30; ++i) {
          TEST_ASSERT_EQUAL_INT(INT_MAX - 30 + i, atomic_fetch_add(&res, 1));
          TEST_ASSERT_EQUAL_INT(INT_MAX - 30 + i + 1, atomic_load(&res));
      }
      TEST_ASSERT_EQUAL_INT(INT_MAX, atomic_fetch_add(&res, 1));
      TEST_ASSERT_EQUAL_INT(INT_MIN, atomic_load(&res));
      TEST_ASSERT_EQUAL_INT(INT_MIN, atomic_fetch_add(&res, 1));
      TEST_ASSERT_EQUAL_INT(INT_MIN + 1, atomic_load(&res));
      TEST_ASSERT_EQUAL_INT(INT_MIN + 1, atomic_fetch_add(&res, 1));
      TEST_ASSERT_EQUAL_INT(INT_MIN + 2, atomic_load(&res));
  }
  
  /* Test atomic_fetch_sub */
  static void test_atomic_dec_negative(void)
  {
      atomic_int res = ATOMIC_VAR_INIT(0);
  
      TEST_ASSERT_EQUAL_INT(0, atomic_fetch_sub(&res, 1));
      TEST_ASSERT_EQUAL_INT(-1, atomic_load(&res));
      TEST_ASSERT_EQUAL_INT(-1, atomic_fetch_sub(&res, 1));
      TEST_ASSERT_EQUAL_INT(-2, atomic_load(&res));
      atomic_store(&res, 0);
      for (int i = 0; i < 512; ++i) {
          TEST_ASSERT_EQUAL_INT(-i, atomic_fetch_sub(&res, 1));
          TEST_ASSERT_EQUAL_INT(-i - 1, atomic_load(&res));
      }
  }
  
  static void test_atomic_dec_positive(void)
  {
      atomic_int res = ATOMIC_VAR_INIT(99);
  
      for (int i = 99; i < -123; --i) {
          TEST_ASSERT_EQUAL_INT(i, atomic_fetch_sub(&res, 1));
          TEST_ASSERT_EQUAL_INT(i - 1, atomic_load(&res));
      }
  }
  
  static void test_atomic_dec_rollover(void)
  {
      atomic_int res = ATOMIC_VAR_INIT(INT_MIN + 30);
  
      for (int i = 0; i < 30; ++i) {
          TEST_ASSERT_EQUAL_INT(INT_MIN + 30 - i, atomic_fetch_sub(&res, 1));
          TEST_ASSERT_EQUAL_INT(INT_MIN + 30 - i - 1, atomic_load(&res));
      }
      TEST_ASSERT_EQUAL_INT(INT_MIN, atomic_fetch_sub(&res, 1));
      TEST_ASSERT_EQUAL_INT(INT_MAX, atomic_load(&res));
      TEST_ASSERT_EQUAL_INT(INT_MAX, atomic_fetch_sub(&res, 1));
      TEST_ASSERT_EQUAL_INT(INT_MAX - 1, atomic_load(&res));
      TEST_ASSERT_EQUAL_INT(INT_MAX - 1, atomic_fetch_sub(&res, 1));
      TEST_ASSERT_EQUAL_INT(INT_MAX - 2, atomic_load(&res));
  }
  
  /* Test atomic_cas with a correct old value */
  static void test_atomic_cas_same(void)
  {
      atomic_int res = ATOMIC_VAR_INIT(0);
      int expected;
  
      expected = 0;
      TEST_ASSERT_EQUAL_INT(1, atomic_compare_exchange_weak(&res, &expected, 12345));
      TEST_ASSERT_EQUAL_INT(12345, atomic_load(&res));
      TEST_ASSERT_EQUAL_INT(0, expected);
      expected = 12345;
      TEST_ASSERT_EQUAL_INT(1, atomic_compare_exchange_weak(&res, &expected, -9876));
      TEST_ASSERT_EQUAL_INT(-9876, atomic_load(&res));
      TEST_ASSERT_EQUAL_INT(12345, expected);
      expected = -9876;
      TEST_ASSERT_EQUAL_INT(1, atomic_compare_exchange_weak(&res, &expected, -9876));
      TEST_ASSERT_EQUAL_INT(-9876, atomic_load(&res));
      TEST_ASSERT_EQUAL_INT(-9876, expected);
      expected = -9876;
      TEST_ASSERT_EQUAL_INT(1, atomic_compare_exchange_weak(&res, &expected, 0));
      TEST_ASSERT_EQUAL_INT(0, atomic_load(&res));
  }
  
  /* Test atomic_cas with a non-matching old value */
  static void test_atomic_cas_diff(void)
  {
      atomic_int res = ATOMIC_VAR_INIT(32767);
      int expected;
  
      expected = 22222;
      TEST_ASSERT_EQUAL_INT(0, atomic_compare_exchange_weak(&res, &expected, 12345));
      TEST_ASSERT_EQUAL_INT(32767, expected);
      TEST_ASSERT_EQUAL_INT(32767, atomic_load(&res));
  
      atomic_store(&res, -12345);
      expected = 12345;
      TEST_ASSERT_EQUAL_INT(0, atomic_compare_exchange_weak(&res, &expected, 12345));
      TEST_ASSERT_EQUAL_INT(-12345, expected);
      TEST_ASSERT_EQUAL_INT(-12345, atomic_load(&res));
  
      expected = 12345;
      TEST_ASSERT_EQUAL_INT(0, atomic_compare_exchange_weak(&res, &expected, 12345));
      TEST_ASSERT_EQUAL_INT(-12345, expected);
      TEST_ASSERT_EQUAL_INT(-12345, atomic_load(&res));
  
      expected = 12345;
      TEST_ASSERT_EQUAL_INT(0, atomic_compare_exchange_weak(&res, &expected, -12345));
      TEST_ASSERT_EQUAL_INT(-12345, expected);
      TEST_ASSERT_EQUAL_INT(-12345, atomic_load(&res));
  }
  
  /* Test atomic_load, atomic_store */
  static void test_atomic_value(void)
  {
      atomic_int res = ATOMIC_VAR_INIT(12345);
  
      TEST_ASSERT_EQUAL_INT(12345, atomic_load(&res));
      atomic_store(&res, 24332);
      TEST_ASSERT_EQUAL_INT(24332, atomic_load(&res));
  }
  
  /* ATOMIC_VAR_INIT is implicitly tested by the other tests */
  
  Test *tests_core_atomic_tests(void)
  {
      EMB_UNIT_TESTFIXTURES(fixtures) {
          new_TestFixture(test_atomic_flag),
          new_TestFixture(test_atomic_inc_positive),
          new_TestFixture(test_atomic_inc_negative),
          new_TestFixture(test_atomic_inc_rollover),
          new_TestFixture(test_atomic_dec_positive),
          new_TestFixture(test_atomic_dec_negative),
          new_TestFixture(test_atomic_dec_rollover),
          new_TestFixture(test_atomic_cas_same),
          new_TestFixture(test_atomic_cas_diff),
          new_TestFixture(test_atomic_value),
      };
  
      EMB_UNIT_TESTCALLER(core_atomic_tests, NULL, NULL,
                          fixtures);
  
      return (Test *)&core_atomic_tests;
  }